• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/uf/controller.php
  • Класс: BitrixDiskUfController
  • Вызов: Controller::processActionShowVersionView
protected function processActionShowVersionView()
{
	$attachedModel = $this->getAttachedModel();

	$version = $attachedModel->getVersion();
	if(!$version)
	{
		$this->end();
	}

	$fileName = $version->getView()->getName();
	$fileData = $version->getView()->getData();

	$cacheTime = Configuration::DEFAULT_CACHE_TIME;

	CFile::viewByUser($fileData, array('force_download' => false, 'cache_time' => $cacheTime, 'attachment_name' => $fileName));
}