- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/classes/general/mail_template.php
- Класс: \CAllCrmMailTemplate
- Вызов: CAllCrmMailTemplate::__ConvertHtmlToBbCode
static function __ConvertHtmlToBbCode(&$text, &$parser)
{
$text = preg_replace(array("/\".BX_UTF_PCRE_MODIFIER, "/\>/".BX_UTF_PCRE_MODIFIER), array('<', '>'), $text);
$text = preg_replace("/\
/i".BX_UTF_PCRE_MODIFIER, "", $text);
$text = preg_replace("/\<(\w+)[^>]*\>(.+?)\<\/\\1[^>]*\>/is".BX_UTF_PCRE_MODIFIER, "\\2", $text);
$text = preg_replace("/\<*\/li\>/i".BX_UTF_PCRE_MODIFIER, "", $text);
$text = str_replace(array("<", ">"),array("<", ">"), $text);
$parser->allow = array();
return true;
}