• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/classes/general/calendar_event.php
  • Класс: CCalendarEvent
  • Вызов: CCalendarEvent::GetCount
static function GetCount()
{
	global $DB;
	$count = 0;
	$res = $DB->Query('select count(*) as c  from b_calendar_event', false, "File: ".__FILE__."
Line: ".__LINE__); if ($res = $res->Fetch()) { $count = $res['c']; } return $count; }