• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/controller/documentservice.php
  • Класс: BitrixDiskControllerDocumentService
  • Вызов: DocumentService::downloadDocumentAction
public function downloadDocumentAction(DocumentOnlyOfficeModelsDocumentSession $documentSession): HttpResponse
{
	$file = $documentSession->getFile();
	$response = ResponseBFile::createByFileId($file->getFileId(), $file->getName());
	$response->setCacheTime(DiskConfiguration::DEFAULT_CACHE_TIME);

	return $response;
}