Your IP : 216.73.216.11


Current Path : /home/digilove/public_html/components/com_akeeba/Model/Json/Task/
Upload File :
Current File : /home/digilove/public_html/components/com_akeeba/Model/Json/Task/GetDBEntities.php

<?php
/**
 * @package   akeebabackup
 * @copyright Copyright (c)2006-2023 Nicholas K. Dionysopoulos / Akeeba Ltd
 * @license   GNU General Public License version 3, or later
 */

namespace Akeeba\Backup\Site\Model\Json\Task;

// Protect from unauthorized access
defined('_JEXEC') || die();

use Joomla\CMS\Filter\InputFilter;

/**
 * Get the database entities along with their filtering status (typically for rendering a GUI)
 *
 * @deprecated
 */
class GetDBEntities extends AbstractTask
{
	/**
	 * Execute the JSON API task
	 *
	 * @param   array  $parameters  The parameters to this task
	 *
	 * @return  mixed
	 *
	 * @throws  \RuntimeException  In case of an error
	 */
	public function execute(array $parameters = [])
	{
		throw new \RuntimeException('This method is no longer supported by the Akeeba Remote JSON API', 501);
	}
}