| Current Path : /home/wuectly/www/plugins/system/t3/base/html/layouts/joomla/content/info_block/ |
| Current File : /home/wuectly/www/plugins/system/t3/base/html/layouts/joomla/content/info_block/parent_category.php |
<?php
/**
* @package Joomla.Site
* @subpackage Layout
*
* @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('JPATH_BASE') or die;
$item = $displayData['item'];
$params = $displayData['params'];
$title = $this->escape($item->parent_title);
?>
<dd class="parent-category-name hasTooltip" title="<?php echo JText::sprintf('COM_CONTENT_PARENT', ''); ?>">
<i class="icon-folder-close"></i>
<?php if ($params->get('link_parent_category') && !empty($item->parent_slug)) : ?>
<?php echo JHtml::_('link', JRoute::_(ContentHelperRoute::getCategoryRoute($item->parent_slug)), '<span itemprop="genre">'.$title.'</span>'); ?>
<?php else : ?>
<span itemprop="genre"><?php echo $title ?></span>
<?php endif; ?>
</dd>