• Модуль: mobile
  • Путь к файлу: ~/bitrix/modules/mobile/lib/component/loglist/param.php
  • Класс: BitrixMobileComponentLogListParam
  • Вызов: Param::prepareCounterParams
public function prepareCounterParams(&$componentParams)
{
	$componentParams['SET_LOG_CACHE'] = (
		isset($componentParams['SET_LOG_CACHE'])
		&& $componentParams['LOG_ID'] <= 0
		&& !$this->ajaxCall
			? $componentParams['SET_LOG_CACHE']
			: 'N'
	);

	$componentParams['SET_LOG_COUNTER'] = (
		$componentParams['SET_LOG_CACHE'] === 'Y'
		&& (
			(
				!$this->ajaxCall
				&& BitrixMainPageFrame::isAjaxRequest()
			)
			|| $this->reloadCall
		)
			? 'Y'
			: 'N'
	);
}