| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/icd/templates/ja_purity_ii/html/mod_breadcrumbs/ |
Upload File : |
<?php
/*
#------------------------------------------------------------------------
JA Purity II for Joomla 1.5
#------------------------------------------------------------------------
#Copyright (C) 2004-2009 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
#@license - GNU/GPL, http://www.gnu.org/copyleft/gpl.html
#Author: J.O.O.M Solutions Co., Ltd
#Websites: http://www.joomlart.com - http://www.joomlancers.com
#------------------------------------------------------------------------
*/
// no direct access
defined('_JEXEC') or die('Restricted access'); ?>
<span class="breadcrumbs pathway">
<?php
$start = $count > 1?1:0;
for ($i = $start; $i < $count; $i ++) :
//Parse title and remove the options & description which configure for mega menu.
$title = $list[$i]->name;
$title = str_replace (array('\\[','\\]'), array('%open%', '%close%'), $title);
$regex = '/([^\[]*)\[([^\]]*)\](.*)$/';
if (preg_match ($regex, $title, $matches)) {
$title = $matches[1];
} else {
$title = $title;
}
$title = str_replace (array('%open%', '%close%'), array('[',']'), $title);
$name = $title;
// If not the last item in the breadcrumbs add the separator
if ($i < $count -1) {
if(!empty($list[$i]->link)) {
echo '<a href="'.$list[$i]->link.'" class="pathway">'.$name.'</a>';
} else {
echo '<span class="name">'.$name.'</span>';
}
echo ' '.$separator.' ';
} else if ($params->get('showLast', 1)) { // when $i == $count -1 and 'showLast' is true
echo '<span class="name">'.$name.'</span>';
}
endfor; ?>
</span>