• Модуль: salescenter
  • Путь к файлу: ~/bitrix/modules/salescenter/lib/model/page.php
  • Класс: BitrixSalesCenterModelPage
  • Вызов: Page::getParams
public function getParams(): array
{
	if($this->params === null)
	{
		$this->params = PageParamTable::getList([
			'filter' => [
				'=PAGE_ID' => $this->getId(),
			]
		])->fetchAll();
	}

	return $this->params;
}