• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/integrations/report/statistic.php
  • Класс: BitrixImOpenLinesIntegrationsReportStatistic
  • Вызов: Statistic::getSessionsCount
private function getSessionsCount()
{


	$query = new Query(SessionTable::getEntity());
//		$query->where('DATE_CREATE', '>', $this->getStatisticStartTime());
	$query->addSelect(new ExpressionField('CNT', 'COUNT(ID)'));

	$result = $query->exec()->fetchRaw();
	return $result['CNT'];
}