Your IP : 216.73.216.240
<?php
/**
*----------------------------------------------------------------------------
* iCagenda Events Management Extension for Joomla!
*----------------------------------------------------------------------------
* @version 4.0.0 2025-06-10
*
* @package iCagenda.Admin
* @subpackage src.View
* @link https://www.joomlic.com
*
* @author Cyril Reze
* @copyright (c) 2012-2026 Cyril Reze / JoomliC. All rights reserved.
* @license GNU General Public License version 3 or later; see LICENSE.txt
*
* @since 1.2.6
*----------------------------------------------------------------------------
*/
namespace WebiC\Component\iCagenda\Administrator\View\Info;
use Joomla\CMS\Language\Text;
use Joomla\CMS\MVC\View\GenericDataException;
use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView;
use Joomla\CMS\Toolbar\Toolbar;
use Joomla\CMS\Toolbar\ToolbarHelper;
use WebiC\Component\iCagenda\Administrator\Helper\iCagendaHelper;
// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects
/**
* Info HTML view class.
*/
class HtmlView extends BaseHtmlView
{
/**
* The actions the user is authorised to perform
*
* @var \JObject
*/
protected $canDo;
/**
* Display the view
*
* @param string $tpl The name of the template file to parse; automatically searches through the template paths.
*
* @return void
*/
public function display($tpl = null)
{
$this->canDo = iCagendaHelper::getActions();
// Check for errors.
if (\count($errors = $this->get('Errors'))) {
throw new GenericDataException(implode("\n", $errors), 500);
}
// We don't need toolbar in the modal window.
if ($this->getLayout() !== 'modal') {
$this->addToolbar();
}
parent::display($tpl);
}
/**
* Add the page title and toolbar.
*/
protected function addToolbar()
{
// Get the toolbar object instance
$toolbar = Toolbar::getInstance('toolbar');
// Get the results for each action.
$canDo = $this->canDo;
// Set Title
ToolbarHelper::title('iCagenda - ' . Text::_('COM_ICAGENDA_INFO'), 'iCicon-information');
if ($canDo->get('core.admin', 'com_icagenda') || $canDo->get('core.options', 'com_icagenda')) {
$toolbar->preferences('com_icagenda');
}
}
}