• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/classes/general/ws_calendar.php
  • Класс: CIntranetCalendarWS
  • Вызов: CIntranetCalendarWS::__getRMIblockID
function __getRMIblockID()
{
	if ($this->RMIblockID)
		return $this->RMIblockID;
	else
	{
		$dbRes = CIBlock::GetList(array('SORT' => 'ASC'), array('CODE' => 'meeting_rooms'), false);

		if ($arRes = $dbRes->Fetch())
		{
			return ($this->RMIblockID = $arRes['ID']);
		}
	}

	return false;
}