• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/integration/bizproc/message/newstemplate.php
  • Класс: BitrixImIntegrationBizprocMessageNewsTemplate
  • Вызов: NewsTemplate::buildDescriptionText
protected function buildDescriptionText(): string
{
	$text = mb_substr(CBPHelper::convertBBtoText($this->title . ' ' . $this->messageText), 0, 200);
	if (mb_strlen($text) === 200)
	{
		$text .= '...';
	}

	return $text;
}