- Модуль: forum
- Путь к файлу: ~/bitrix/modules/forum/classes/general/functions.php
- Класс: forumTextParser
- Вызов: forumTextParser::convert_to_rss
function convert_to_rss(
$text,
$arImages = Array(),
$arAllow = Array())
{
if (empty($arAllow))
$arAllow = array(
"HTML" => "N",
"ANCHOR" => "Y",
"BIU" => "Y",
"IMG" => "Y",
"QUOTE" => "Y",
"CODE" => "Y",
"FONT" => "Y",
"LIST" => "Y",
"SMILES" => "Y",
"NL2BR" => "N",
"TABLE" => "Y"
);
$text = preg_replace(
array(
"#^(.+?)|>).*?$#is".BX_UTF_PCRE_MODIFIER,
"#^(.+?)[cut[s]*(/]|]).*?$#is".BX_UTF_PCRE_MODIFIER),
"\1", $text);
return $this->convert($text, $arAllow, "rss", $arImages);
}