Files
idpan.poznan.pl/administrator/components/com_pagebuilderck/views/modules/view.html.php
2026-02-08 21:16:11 +01:00

35 lines
850 B
PHP

<?php
/**
* @name Page Builder CK
* @package com_pagebuilderck
* @copyright Copyright (C) 2015. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
* @author Cedric Keiflin - https://www.template-creator.com - https://www.joomlack.fr
*/
// No direct access
defined('_JEXEC') or die;
use Pagebuilderck\CKView;
use Pagebuilderck\CKfof;
class PagebuilderckViewModules extends CKView {
function display($tpl = null) {
$user = CKFof::getUser();
$authorised = ($user->authorise('core.create', 'com_pagebuilderck') || (count($user->getAuthorisedCategories('com_pagebuilderck', 'core.create'))));
if ($authorised !== true)
{
throw new Exception(JText::_('JERROR_ALERTNOAUTHOR'), 403);
return false;
}
$this->items = $this->get('Items');
parent::display($tpl);
exit();
}
}