. */ use Alledia\OSMap\Factory; use Joomla\CMS\Layout\LayoutHelper; defined('_JEXEC') or die; $displayData = [ 'textPrefix' => 'COM_OSMAPS', 'formURL' => 'index.php?option=com_osmaps&view=sitemaps', 'helpURL' => 'https://www.joomlashack.com/docs/osmaps/start/', 'icon' => 'icon-copy article', ]; $user = Factory::getApplication()->getIdentity(); if ( $user->authorise('core.create', 'com_osmaps') || count($user->getAuthorisedCategories('com_osmaps', 'core.create')) > 0 ) { $displayData['createURL'] = 'index.php?option=com_osmaps&task=sitemap.add'; } echo LayoutHelper::render('joomla.content.emptystate', $displayData);