• Модуль: report
  • Путь к файлу: ~/bitrix/modules/report/lib/visualconstructor/boardcomponentbutton.php
  • Класс: BitrixReportVisualConstructorBoardComponentButton
  • Вызов: BoardComponentButton::process
public function process()
{
	if ($this->isProcessed())
	{
		return $this;
	}

	ob_start();
	$this->flush();
	$componentContent = ob_get_clean();

	//$this->collectAssetsPathList();


	$this->setHtml($componentContent);
	$this->setJsList($this->getComponentJsList());
	$this->setCssList($this->getComponentCssList());
	$this->setStringList($this->getComponentstringList());

	$this->setProcessed(true);
	return $this;
}