File Manager

Current Directory: /home/astoriaah/www/templates/yootheme/html/layouts/joomla/content
Viewing File: /home/astoriaah/www/templates/yootheme/html/layouts/joomla/content/tags.php
<?php defined('JPATH_BASE') or die; use Joomla\Registry\Registry; JLoader::register('TagsHelperRoute', JPATH_BASE . '/components/com_tags/helpers/route.php'); ?> <?php if (!empty($displayData)) : ?> <?php foreach ($displayData as $i => $tag) : ?> <?php if (in_array($tag->access, JAccess::getAuthorisedViewLevels(JFactory::getUser()->get('id')))) : ?> <?php $tagParams = new Registry($tag->params) ?> <?php $tagClass = $tagParams->get('tag_link_class', 'label label-info') ?> <a href="<?= JRoute::_(TagsHelperRoute::getTagRoute($tag->tag_id . '-' . $tag->alias)) ?>" class="<?= $tagClass ?>" property="keywords"><?= $this->escape($tag->title) ?></a> <?php endif ?> <?php endforeach ?> <?php endif ?>