__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* @package Helix3 Framework
* @author JoomShaper https://www.joomshaper.com
* @copyright (c) 2010 - 2021 JoomShaper
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
defined('_JEXEC') or die;
use Joomla\CMS\Language\Text;
?>
<ol class="breadcrumb">
<?php
if ($params->get('showHere', 1))
{
echo '<span>' . Text::_('MOD_BREADCRUMBS_HERE') . ' </span>';
}
else
{
echo '<li class="breadcrumb-item"><i class="fa fa-home"></i></li>';
}
// Get rid of duplicated entries on trail including home page when using multilanguage
for ($i = 0; $i < $count; $i++)
{
if ($i == 1 && !empty($list[$i]->link) && !empty($list[$i - 1]->link) && $list[$i]->link == $list[$i - 1]->link)
{
unset($list[$i]);
}
}
end($list);
$last_item_key = key($list);
prev($list);
$penult_item_key = key($list);
$show_last = $params->get('showLast', 1);
foreach ($list as $key => $item) {
if ($key != $last_item_key) {
echo '<li class="breadcrumb-item">';
if (!empty($item->link)) {
echo '<a href="' . $item->link . '" class="pathway">' . $item->name . '</a>';
} else {
echo $item->name;
}
echo '</li>';
} elseif ($show_last) {
echo '<li class="breadcrumb-item active">' . $item->name . '</li>';
}
}
?>
</ol>
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| default.php | File | 1.25 KB | 0664 |
|