• Модуль: forum
  • Путь к файлу: ~/bitrix/modules/forum/classes/general/functions.php
  • Класс: forumTextParser
  • Вызов: forumTextParser::ParserFile
function ParserFile(&$text, &$obj, $type="html")
{
	if (method_exists($obj, "convert_attachment"))
	{
		$tmpType = $obj->type;
		$obj->type = $type;
		$text = preg_replace_callback("/[file([^]]*)ids*=s*([0-9]+)([^]]*)]/is".BX_UTF_PCRE_MODIFIER, array($this, "convert_attachment"), $text);
		$obj->type = $tmpType;
	}
}