• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/classes/general/calendar.php
  • Класс: CCalendar
  • Вызов: CCalendar::GetTypeByExternalId
static function GetTypeByExternalId($externalId = false)
{
	if ($externalId)
	{
		$res = CCalendarType::GetList(array('arFilter' => array('EXTERNAL_ID' => $externalId)));
		if ($res && $res[0])
			return $res[0]['XML_ID'];
	}
	return false;
}