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

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

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

	$result = Loc::getMessage('SONET_LIVEFEED_LOG_DATA_PINNED_TITLE');

	if (
		!empty($logEntryFields['SCHEME_FIELDS'])
		&& isset($logEntryFields['SCHEME_FIELDS']['NAME'])
	)
	{
		$result = Loc::getMessage('SONET_LIVEFEED_LOG_DATA_PINNED_TITLE2', [
			'#TITLE#' => $logEntryFields['SCHEME_FIELDS']['NAME']
		]);
	}

	return $result;
}