| Server IP : 87.98.231.4 / Your IP : 216.73.217.178 [ Web Server : Apache System : Linux webm007.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : grupmartgn ( 667608) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/grupmartgn/elanartcrafts/templates/etfurniture/html/mod_breadcrumbs/ |
Upload File : |
<?php
/**
* @package Joomla.Site
* @subpackage mod_breadcrumbs
*
* @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
JHtml::_('bootstrap.tooltip');
?>
<ol class="breadcrumb<?php echo $moduleclass_sfx; ?>">
<?php
if ($params->get('showHere', 1))
{
echo '<span>' . JText::_('MOD_BREADCRUMBS_HERE') . ' </span>';
}
else
{
echo '<li><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>';
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="active">' . $item->name . '</li>';
}
}
?>
</ol>