• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/component/loglist.php
  • Класс: BitrixSocialnetworkComponentLogList
  • Вызов: 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;
}