%PDF- %PDF-
| Direktori : /home/bitrix/www/bitrix/components/bitrix/search.page/templates/icons/ |
| Current File : /home/bitrix/www/bitrix/components/bitrix/search.page/templates/icons/chain_template.php |
<?
//Navigation chain template
if(!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true)die();
$arChainBody = array();
foreach($arCHAIN as $item)
{
if(strlen($item["LINK"])<strlen(SITE_DIR))
continue;
if($item["LINK"] <> "")
$arChainBody[] = '<a href="'.$item["LINK"].'">'.htmlspecialcharsex($item["TITLE"]).'</a>';
else
$arChainBody[] = htmlspecialcharsex($item["TITLE"]);
}
return implode(' / ', $arChainBody);
?>