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

	return $this->pathInstance;
}