• Модуль: documentgenerator
  • Путь к файлу: ~/bitrix/modules/documentgenerator/lib/integration/transformermanager.php
  • Класс: BitrixDocumentGeneratorIntegrationTransformerManager
  • Вызов: TransformerManager::loadTransformInfo
protected function loadTransformInfo()
{
	$this->transformInfo = false;

	$bFileId = $this->getBFileId();
	if(!$bFileId)
	{
		$this->result->addError(new Error('b_file id not found'));
	}
	else
	{
		$this->transformInfo = FileTransformer::getTransformationInfoByFile($bFileId);
	}
}