• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/downloadcontroller.php
  • Класс: BitrixDiskDownloadController
  • Вызов: DownloadController::processActionShowPreview
protected function processActionShowPreview()
{
	if(!$this->file->getPreviewId())
	{
		$this->end();
	}

	$fileName = $this->file->getView()->getPreviewName();
	$fileData = $this->file->getView()->getPreviewData();

	$cacheTime = 86400;

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