• Модуль: documentgenerator
  • Путь к файлу: ~/bitrix/modules/documentgenerator/lib/body.php
  • Класс: BitrixDocumentGeneratorBody
  • Вызов: Body::readFromStorage
static function readFromStorage(Storage $storage, $from)
{
	$content = $storage->read($from);
	if($content)
	{
		$body = new static($content);
		return $body->setStorage($storage);
	}

	return false;
}