• Модуль: search
  • Путь к файлу: ~/bitrix/modules/search/classes/general/statistic.php
  • Класс: CSearchStatistic
  • Вызов: CSearchStatistic::IsActive
static function IsActive()
{
	$bActive = false;
	foreach (GetModuleEvents("main", "OnEpilog", true) as $arEvent)
	{
		if (
			$arEvent["TO_MODULE_ID"] == "search"
			&& $arEvent["TO_CLASS"] == "CSearchStatistic"
		)
		{
			$bActive = true;
			break;
		}
	}
	return $bActive;
}