Your IP : 216.73.216.240
<?php
/**
*----------------------------------------------------------------------------
* iCagenda Events Management Extension for Joomla!
*----------------------------------------------------------------------------
* @version 3.8.0 2021-12-25
*
* @package iCagenda.Admin
* @subpackage tmpl.categories
* @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 3.8.0
*----------------------------------------------------------------------------
*/
defined('_JEXEC') or die;
use Joomla\CMS\Factory;
use Joomla\CMS\Layout\LayoutHelper;
$displayData = [
'textPrefix' => 'COM_ICAGENDA_REGISTRATIONS',
'formURL' => 'index.php?option=com_icagenda',
// 'helpURL' => 'https://www.joomlic.com/docs/documentation',
'icon' => 'iCicon-users',
];
$user = Factory::getApplication()->getIdentity();
//if ($user->authorise('core.create', 'com_icagenda'))
//{
// $displayData['createURL'] = 'index.php?option=com_icagenda&task=event.add';
//}
echo LayoutHelper::render('joomla.content.emptystate', $displayData);