• Модуль: meeting
  • Путь к файлу: ~/bitrix/modules/meeting/classes/general/meeting.php
  • Класс: CAllMeeting
  • Вызов: CAllMeeting::GetEvent
static function GetEvent($eventId)
{
	if (self::IsNewCalendar())
	{
		$arEvent = CCalendarEvent::GetByID($eventId);
		if (is_array($arEvent) && $arEvent['LOCATION'])
		{
			$arEvent['LOCATION'] = CCalendar::ParseLocation($arEvent['LOCATION']);
		}
		return $arEvent;
	}
}