• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/classes/general/event_calendar.php
  • Класс: CECEvent
  • Вызов: CECEvent::IsMeeting
function IsMeeting($iblockId, $id)
{
	$res = 'N';
	$dbProp = CIBlockElement::GetProperty($iblockId, $id, 'sort', 'asc', array('CODE' => 'IS_MEETING'));
	if ($arProp = $dbProp->Fetch())
		$res = intval($arProp['VALUE']);

	return $res == 'Y';
}