Files
register/marko_unpacked/marko/cms/views/api/stream-file-content.php
T
Admin Nasledstvo ac168868ee Initial import
2026-05-01 20:52:04 +03:00

15 lines
376 B
PHP

<?php
/* @var $this \yii\web\View */
/* @var \app\models\RegisterObjectFiles $objectFile */
$filename = $objectFile->video_title ?? '3D Model';
header('Content-Type: application/octet-stream');
header('Content-Disposition: inline; filename="3d model"');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
@readfile($objectFile->file_url);
exit;