CCrmComponentHelper::encodeErrorMessage

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. CCrmComponentHelper
  4. encodeErrorMessage
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/crm_component_helper.php
  • Класс: \CCrmComponentHelper
  • Вызов: CCrmComponentHelper::encodeErrorMessage
static function encodeErrorMessage(string $text): string
{
	if ($text === '')
	{
		return '';
	}
	$text = str_ireplace(['
', '
', '
'], '
', $text); $textLines = explode('
', $text); $textLines = array_map(static function($item) { return htmlspecialcharsbx($item); }, $textLines); return implode('
', $textLines); }

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