• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/ical/outcomingeventmanager.php
  • Класс: BitrixCalendarICalOutcomingEventManager
  • Вызов: OutcomingEventManager::getOrganizerName
private function getOrganizerName(): string
{
	return $this->attendees[$this->eventFields['MEETING_HOST']]['NAME']
		. ' ' . $this->attendees[$this->eventFields['MEETING_HOST']]['LAST_NAME']
		. (empty($this->attendees[$this->eventFields['MEETING_HOST']]['EMAIL'])
			? '' :' (' . $this->attendees[$this->eventFields['MEETING_HOST']]['EMAIL'] .')');
}