15 lines
376 B
PHP
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;
|