• Модуль: documentgenerator
  • Путь к файлу: ~/bitrix/modules/documentgenerator/lib/body/html.php
  • Класс: BitrixDocumentGeneratorBodyHtml
  • Вызов: Html::process
public function process()
{
	$result = new Result();

	while($nextCommand = $this->htmlDocument->querySelector('command'))
	{
		$this->processCommand($nextCommand);
	}

	$this->insertValues();

	$this->content = $this->htmlDocument->getInnerHTML();
	$result->setData(['CONTENT' => $this->content]);

	return $result;
}