| Current Path : /home/balossw/www/administrator/components/com_spsimpleportfolio/controllers/ |
| Current File : /home/balossw/www/administrator/components/com_spsimpleportfolio/controllers/tag.php |
<?php
/**
* @package SP Simple Portfolio
*
* @copyright Copyright (C) 2010 - 2021 JoomShaper. All rights reserved.
* @license GNU General Public License version 2 or later.
*/
defined('_JEXEC') or die();
use Joomla\CMS\Factory;
use Joomla\CMS\MVC\Controller\FormController;
class SpsimpleportfolioControllerTag extends FormController {
public function __construct($config = array()) {
parent::__construct($config);
}
protected function allowAdd($data = array()) {
return parent::allowAdd($data);
}
protected function allowEdit($data = array(), $key = 'id') {
$id = isset( $data[ $key ] ) ? $data[ $key ] : 0;
if( !empty( $id ) ) {
return Factory::getUser()->authorise( "core.edit", "com_spsimpleportfolio.tag." . $id );
}
}
}