• Модуль: mobile
  • Путь к файлу: ~/bitrix/modules/mobile/lib/component/loglist.php
  • Класс: BitrixMobileComponentLogList
  • Вызов: LogList::getLogPageProcessorInstance
public function getLogPageProcessorInstance(): Page
{
	if ($this->logPageProcessorInstance === null)
	{
		$this->logPageProcessorInstance = new Page([
			'component' => $this,
			'request' => $this->getRequest(),
			'processorInstance' => $this->getProcessorInstance()
		]);
	}

	return $this->logPageProcessorInstance;
}