• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/classes/general/log_tools.php
  • Класс: CSocNetLogComponent
  • Вызов: CSocNetLogComponent::isSetTrafficNeeded
static function isSetTrafficNeeded($arParams)
{
	if (
		!isset($arParams["TRAFFIC_SET_PERIOD"])
		|| (int)$arParams["TRAFFIC_SET_PERIOD"] <= 0
	)
	{
		$arParams["TRAFFIC_SET_PERIOD"] = 60*60*24;
	}

	return (
		(int)$arParams["PAGE_NUMBER"] == 1
		&& $arParams["GROUP_CODE"] === '**'
		&& (time() - $arParams['TRAFFIC_LAST_DATE_TS']) > $arParams["TRAFFIC_SET_PERIOD"]
	);
}