Created
November 5, 2015 19:28
-
-
Save d1i1m1o1n/6b79528126b4fbb403c5 to your computer and use it in GitHub Desktop.
Шаблон навигационной цепочки (хлебные крошки). /bitrix/templates/ID текущего шаблона сайта/chain_template.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?if(!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true)die();?> | |
<? | |
$sChainProlog = "<nav class='breadcrumbs'><ul><li><a href='/'>Главная</a> /</li>"; | |
if( strlen($LINK) > 0 && $arChain[count($arCHAIN)-1]['LINK'] != $LINK ) { | |
$sChainBody .= "<li><a href=\"".$LINK."\" class=\"chain\">".htmlspecialchars($TITLE)."</a> /</li>"; // если указана ссылка то выводим ссылку | |
} else { | |
$sChainBody .= "<li>".htmlspecialchars($TITLE)."</li>"; // иначе текст, или последний пункт | |
} | |
$sChainEpilog = "</ul></nav>"; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment