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

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

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

	return Loc::getMessage('SONET_LIVEFEED_CALENDAR_EVENT_PINNED_TITLE', [
		'#TITLE#' => $calendarEvent['NAME']
	]);
}