• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/automaticaction/noanswer.php
  • Класс: BitrixImOpenLinesAutomaticActionNoAnswer
  • Вызов: NoAnswer::isThereSessionNoAnswer
static function isThereSessionNoAnswer()
{
	$result = false;

	$count = SessionCheckTable::getCount(['!=DATE_NO_ANSWER' => null]);

	if(!empty($count) && $count > 0)
	{
		$result = true;
	}

	return $result;
}