primo commit
This commit is contained in:
65
plugins/privacy/consents/src/Extension/Consents.php
Normal file
65
plugins/privacy/consents/src/Extension/Consents.php
Normal file
@ -0,0 +1,65 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Plugin
|
||||
* @subpackage Privacy.consents
|
||||
*
|
||||
* @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace Joomla\Plugin\Privacy\Consents\Extension;
|
||||
|
||||
use Joomla\CMS\User\User;
|
||||
use Joomla\Component\Privacy\Administrator\Plugin\PrivacyPlugin;
|
||||
use Joomla\Component\Privacy\Administrator\Table\RequestTable;
|
||||
use Joomla\Database\ParameterType;
|
||||
|
||||
// phpcs:disable PSR1.Files.SideEffects
|
||||
\defined('_JEXEC') or die;
|
||||
// phpcs:enable PSR1.Files.SideEffects
|
||||
|
||||
/**
|
||||
* Privacy plugin managing Joomla user consent data
|
||||
*
|
||||
* @since 3.9.0
|
||||
*/
|
||||
final class Consents extends PrivacyPlugin
|
||||
{
|
||||
/**
|
||||
* Processes an export request for Joomla core user consent data
|
||||
*
|
||||
* This event will collect data for the core `#__privacy_consents` table
|
||||
*
|
||||
* @param RequestTable $request The request record being processed
|
||||
* @param ?User $user The user account associated with this request if available
|
||||
*
|
||||
* @return \Joomla\Component\Privacy\Administrator\Export\Domain[]
|
||||
*
|
||||
* @since 3.9.0
|
||||
*/
|
||||
public function onPrivacyExportRequest(RequestTable $request, ?User $user = null)
|
||||
{
|
||||
if (!$user) {
|
||||
return [];
|
||||
}
|
||||
|
||||
$domain = $this->createDomain('consents', 'joomla_consent_data');
|
||||
$db = $this->getDatabase();
|
||||
|
||||
$query = $db->getQuery(true)
|
||||
->select('*')
|
||||
->from($db->quoteName('#__privacy_consents'))
|
||||
->where($db->quoteName('user_id') . ' = :id')
|
||||
->order($db->quoteName('created') . ' ASC')
|
||||
->bind(':id', $user->id, ParameterType::INTEGER);
|
||||
|
||||
$items = $db->setQuery($query)->loadAssocList();
|
||||
|
||||
foreach ($items as $item) {
|
||||
$domain->addItem($this->createItemFromArray($item));
|
||||
}
|
||||
|
||||
return [$domain];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user