Your IP : 216.73.216.229


Current Path : /home/jeromecohp/www/templates/yootheme/html/mod_articles_categories/
Upload File :
Current File : /home/jeromecohp/www/templates/yootheme/html/mod_articles_categories/default_items.php

<?php

defined('_JEXEC') or die;

use Joomla\CMS\Helper\ModuleHelper;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Router\Route;
use Joomla\Component\Content\Site\Helper\RouteHelper;

?>

<?php foreach ($list as $item) : $active = $_SERVER['REQUEST_URI'] == Route::_(RouteHelper::getCategoryRoute($item->id)) ?>
<li <?= ($active ? 'class="uk-active"' : '') ?>>

    <a href="<?= Route::_(RouteHelper::getCategoryRoute($item->id)) ?>">
        <?= $item->title ?>
        <?php if ($params->get('numitems')) : ?>
        <span class="uk-badge"><?= $item->numitems ?></span>
        <?php endif ?>
    </a>

    <?php if ($params->get('show_description', 0) && $item->description) : ?>
    <div><?= HTMLHelper::_('content.prepare', $item->description, $item->getParams(), 'mod_articles_categories.content') ?></div>
    <?php endif ?>

    <?php if ($params->get('show_children', 0) && (($params->get('maxlevel', 0) == 0) || ($params->get('maxlevel') >= ($item->level - $startLevel))) && count($item->getChildren())) : ?>
    <ul class="uk-list">
        <?php
            $temp = $list;
            $list = $item->getChildren();
            require ModuleHelper::getLayoutPath('mod_articles_categories', $params->get('layout', 'default') . '_items');
            $list = $temp;
        ?>
    </ul>
    <?php endif ?>
</li>
<?php endforeach ?>