| Код |
|---|
AddEventHandler("main", "OnEndBufferContent", "ModifyPageContent");
function ModifyPageContent(&$content)
{
$request = \Bitrix\Main\Context::getCurrent()->getRequest();
if(!$request->isAdminSection()) // проверяем на админку
{
function qeoteDoctor($matches) {
global $APPLICATION;
$arQuoteDoctor = explode(',', $matches[1]);
ob_start();
$APPLICATION->IncludeComponent(
"bitrix:news.detail",
"quote",
array(
// ПАРАМЕТРЫ КОМПОНЕНТА
)
);
$retrunStr = @ob_get_contents();
ob_get_clean();
return $retrunStr;
}
$content = preg_replace_callback("|\[QUOTE_DOCTOR id=(.*)=endid\]|U".BX_UTF_PCRE_MODIFIER, 'qeoteDoctor', $content);
|
Как правильно подключать стили при таком выводе?