• Модуль: report
  • Путь к файлу: ~/bitrix/modules/report/lib/visualconstructor/analyticboard.php
  • Класс: BitrixReportVisualConstructorAnalyticBoard
  • Вызов: AnalyticBoard::getDisplayComponentParams
public function getDisplayComponentParams()
{
	if ($this->isDisabled())
	{
		return [];
	}
	elseif ($this->isLimited())
	{
		return $this->getLimitComponentParams();
	}
	else
	{
		return [
			'BOARD_ID' => $this->getBoardKey(),
			'IS_DEFAULT_MODE_DEMO' => false,
			'IS_BOARD_DEFAULT' => true,
			'FILTER' => $this->getFilter(),
			'BOARD_BUTTONS' => $this->getButtons(),
			'IS_ENABLED_STEPPER' => $this->isStepperEnabled(),
			'STEPPER_IDS' => $this->getStepperIds()
		];
	}
}