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

45 lines
1.1 KiB
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 to this file
defined('_JEXEC') or die('Restricted access');
jimport('joomla.application.component.view');
/**
* View class for a list of Maximenuck.
*/
class PagebuilderckViewMenus extends CKView {
/**
* Display the view
*/
public 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;
}
// Check for errors.
if (! empty($errors = $this->get('Errors'))) {
JError::raiseError(500, implode("\n", $errors));
return false;
}
$this->menus = $this->get('Menus');
$this->items = $this->get('Items');
parent::display($tpl);
}
}