• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/livefeed/listsitem.php
  • Класс: BitrixSocialnetworkLivefeedListsItem
  • Вызов: ListsItem::getPinnedDescription
public function getPinnedDescription()
{
	$result = '';

	if (empty($this->sourceFields))
	{
		$this->initSourceFields();
	}

	$logEntryFields = $this->getSourceFields();
	if (empty($logEntryFields))
	{
		return $result;
	}

	$description = $logEntryFields['TEXT_MESSAGE'];
	$description = preg_replace('/(.*?)/is', '', $description);
	$description = CTextParser::clearAllTags($description);

	return truncateText(htmlspecialcharsback($description), 100);
}