primo commit
This commit is contained in:
69
plugins/privacy/content/src/Extension/Content.php
Normal file
69
plugins/privacy/content/src/Extension/Content.php
Normal file
@ -0,0 +1,69 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Plugin
|
||||
* @subpackage Privacy.content
|
||||
*
|
||||
* @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\Content\Extension;
|
||||
|
||||
use Joomla\CMS\User\User;
|
||||
use Joomla\Component\Privacy\Administrator\Plugin\PrivacyPlugin;
|
||||
use Joomla\Component\Privacy\Administrator\Table\RequestTable;
|
||||
|
||||
// phpcs:disable PSR1.Files.SideEffects
|
||||
\defined('_JEXEC') or die;
|
||||
// phpcs:enable PSR1.Files.SideEffects
|
||||
|
||||
/**
|
||||
* Privacy plugin managing Joomla user content data
|
||||
*
|
||||
* @since 3.9.0
|
||||
*/
|
||||
final class Content extends PrivacyPlugin
|
||||
{
|
||||
/**
|
||||
* Processes an export request for Joomla core user content data
|
||||
*
|
||||
* This event will collect data for the content core table
|
||||
*
|
||||
* - Content custom fields
|
||||
*
|
||||
* @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 [];
|
||||
}
|
||||
|
||||
$domains = [];
|
||||
$domain = $this->createDomain('user_content', 'joomla_user_content_data');
|
||||
$domains[] = $domain;
|
||||
$db = $this->getDatabase();
|
||||
|
||||
$query = $db->getQuery(true)
|
||||
->select('*')
|
||||
->from($db->quoteName('#__content'))
|
||||
->where($db->quoteName('created_by') . ' = ' . (int) $user->id)
|
||||
->order($db->quoteName('ordering') . ' ASC');
|
||||
|
||||
$items = $db->setQuery($query)->loadObjectList();
|
||||
|
||||
foreach ($items as $item) {
|
||||
$domain->addItem($this->createItemFromArray((array) $item));
|
||||
}
|
||||
|
||||
$domains[] = $this->createCustomFieldsDomain('com_content.article', $items);
|
||||
|
||||
return $domains;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user