• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/downloadcontroller.php
  • Класс: BitrixDiskDownloadController
  • Вызов: DownloadController::processActionShowVersionView
protected function processActionShowVersionView()
{
	$this->version = $this->file->getVersion($this->versionId);
	if(!$this->version)
	{
		$this->errorCollection[] = new Error(Loc::getMessage('DISK_DOWNLOAD_CONTROLLER_ERROR_COULD_NOT_FIND_VERSION'), self::ERROR_COULD_NOT_FIND_VERSION);
		$this->sendJsonErrorResponse();
	}

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

	$cacheTime = Configuration::DEFAULT_CACHE_TIME;

	$this->showFileByArray($fileName, $fileData, $cacheTime);
}