Выводим строку навигации, получаемую в шаблоне catalog.section, в шаблон сайта.
[B]1. Там где нужно вывести строку навигации пишем:[/B]
<?$APPLICATION->AddBufferContent("ShowNav");?>
[B]2. В result_modifier.php пишем:[/B]
$this->__component->arResult["NAV"] = $arResult["NAV_STRING"];
$this->__component->SetResultCacheKeys(array("NAV"));
[B]3. В component_epilog.php пишем:[/B]
define(NAV_STRING, $arResult["NAV"]);
function ShowNav()
{
return NAV_STRING;
}
[B]1. Там где нужно вывести строку навигации пишем:[/B]
<?$APPLICATION->AddBufferContent("ShowNav");?>
[B]2. В result_modifier.php пишем:[/B]
$this->__component->arResult["NAV"] = $arResult["NAV_STRING"];
$this->__component->SetResultCacheKeys(array("NAV"));
[B]3. В component_epilog.php пишем:[/B]
define(NAV_STRING, $arResult["NAV"]);
function ShowNav()
{
return NAV_STRING;
}