| Current Path : /home/g/i/t/giteleslfp/www/templates/corporate2/html/layouts/joomla/content/info_block/ |
| Current File : /home/g/i/t/giteleslfp/www/templates/corporate2/html/layouts/joomla/content/info_block/category.php |
<?php
/**
* @package Joomla.Site
* @subpackage Layout
*
* @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('JPATH_BASE') or die;
?>
<dd class="category-name tck-article-detail-category">
<?php if (TCK_ARTICLE_DETAILS_SHOW_ICONS) : ?>
<span class="tck-article-detail-icon <?php echo TCK_ARTICLE_DETAILS_ICON_CATEGORY ?>" aria-hidden="true"></span>
<?php endif; ?>
<?php $title = $this->escape($displayData['item']->category_title); ?>
<?php if ($displayData['params']->get('link_category') && $displayData['item']->catslug) : ?>
<?php $url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($displayData['item']->catslug)) . '" itemprop="genre">' . $title . '</a>'; ?>
<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $url); ?>
<?php else : ?>
<?php echo JText::sprintf('COM_CONTENT_CATEGORY', '<span itemprop="genre">' . $title . '</span>'); ?>
<?php endif; ?>
</dd>