- Модуль: bizproc
- Путь к файлу: ~/bitrix/modules/bizproc/classes/general/helper.php
- Класс: CBPHelper
- Вызов: CBPHelper::convertBBtoText
static function convertBBtoText(string $text): string
{
$textParser = new CTextParser();
$textParser->allow = [
'HTML' => 'N',
'USER' => 'N',
'ANCHOR' => 'Y',
'BIU' => 'Y',
'IMG' => 'Y',
'QUOTE' => 'N',
'CODE' => 'N',
'FONT' => 'Y',
'LIST' => 'Y',
'SMILES' => 'N',
'NL2BR' => 'Y',
'VIDEO' => 'N',
'TABLE' => 'N',
'CUT_ANCHOR' => 'N',
'ALIGN' => 'N'
];
return $textParser->convertText($text);
}