Пример добавления подстроки ' | a-savin.ru' на все страницы в конец title.
$eventManager = \Bitrix\Main\EventManager::getInstance();
$eventManager->addEventHandler('main', 'OnEpilog', 'AddSuffixInTitle');
function AddSuffixInTitle()
{
    $request = \Bitrix\Main\Context\Context::getCurrent()->getRequest();
if (!$request->isAjaxRequest()) {
$title = $APPLICATION->GetTitle();
$APPLICATION->SetPageProperty('title', $title . ' | a-savin.ru');
} }
Теперь на всех страницах в titile добавляется ' | a-savin.ru'



Возврат к списку