CBPHelper::convertBBtoText

  1. Bitrix24 API (v. 23.675.0)
  2. bizproc
  3. CBPHelper
  4. convertBBtoText
  • Модуль: 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);
}

Добавить комментарий