| Server IP : 46.105.57.169 / Your IP : 216.73.217.35 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/123click/assets/ |
Upload File : |
consents/consents.php 0000644 00000002776 15075233542 0010767 0 ustar 00 <?php
/**
* @package Joomla.Plugin
* @subpackage Privacy.consents
*
* @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
JLoader::register('PrivacyPlugin', JPATH_ADMINISTRATOR . '/components/com_privacy/helpers/plugin.php');
/**
* Privacy plugin managing Joomla user consent data
*
* @since 3.9.0
*/
class PlgPrivacyConsents extends PrivacyPlugin
{
/**
* Processes an export request for Joomla core user consent data
*
* This event will collect data for the core `#__privacy_consents` table
*
* @param PrivacyTableRequest $request The request record being processed
* @param JUser $user The user account associated with this request if available
*
* @return PrivacyExportDomain[]
*
* @since 3.9.0
*/
public function onPrivacyExportRequest(PrivacyTableRequest $request, JUser $user = null)
{
if (!$user)
{
return array();
}
$domain = $this->createDomain('consents', 'joomla_consent_data');
$query = $this->db->getQuery(true)
->select('*')
->from($this->db->quoteName('#__privacy_consents'))
->where($this->db->quoteName('user_id') . ' = ' . (int) $user->id)
->order($this->db->quoteName('created') . ' ASC');
$items = $this->db->setQuery($query)->loadAssocList();
foreach ($items as $item)
{
$domain->addItem($this->createItemFromArray($item));
}
return array($domain);
}
}
consents/consents.xml 0000644 00000001452 15075233542 0010766 0 ustar 00 <?xml version="1.0" encoding="utf-8"?>
<extension version="3.9" type="plugin" group="privacy" method="upgrade">
<name>plg_privacy_consents</name>
<author>Joomla! Project</author>
<creationDate>July 2018</creationDate>
<copyright>(C) 2005 - 2019 Open Source Matters. All rights reserved.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
<version>3.9.0</version>
<description>PLG_PRIVACY_CONSENTS_XML_DESCRIPTION</description>
<files>
<filename plugin="consents">consents.php</filename>
</files>
<languages>
<language tag="en-GB">en-GB.plg_privacy_consents.ini</language>
<language tag="en-GB">en-GB.plg_privacy_consents.sys.ini</language>
</languages>
</extension>
solidres/language/en-GB/en-GB.plg_privacy_solidres.sys.ini 0000604 00000000241 15075233542 0017472 0 ustar 00 PLG_PRIVACY_SOLIDRES="Privacy - Solidres"
PLG_PRIVACY_SOLIDRES_XML_DESCRIPTION="Responsible for processing privacy related requests for the Solidres user data."
solidres/language/en-GB/en-GB.plg_privacy_solidres.ini 0000604 00000000701 15075233542 0016656 0 ustar 00 PLG_PRIVACY_SOLIDRES="Privacy - Solidres"
PLG_PRIVACY_SOLIDRES_XML_DESCRIPTION="Responsible for processing privacy related requests for the Solidres user data."
PLG_PRIVACY_SOLIDRES_ERR_ADMIN_USER="You are not allowed to delete the information of a Solidres admin user"
PLG_PRIVACY_SOLIDRES_ACTIONS_1="All your Solidres data (reservation, invoice, property, experience, feedback...) will be pseudonymised to something like anonymous123@example.com."