• Модуль: documentgenerator
  • Путь к файлу: ~/bitrix/modules/documentgenerator/lib/rest/restmanager.php
  • Класс: BitrixDocumentGeneratorRestRestManager
  • Вызов: RestManager::showFileContent
static function showFileContent($fileId)
{
	$content = FileTable::getContent($fileId);
	if($content)
	{
		header("Content-Type: text/plain");
		echo $content;

		Application::getInstance()->terminate();
	}

	throw new RestException('File not found', RestException::ERROR_NOT_FOUND);
}