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

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

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

	return ($post['MICRO'] === 'N' ? truncateText($post['TITLE'], 100) : '');
}