oms-Media/Theme/Api/render.tpl.php
2021-01-31 17:17:50 +01:00

11 lines
313 B
PHP

<?php
// @todo: is this chunked/streamed output or bulk output
// if it is streamed it is not working because of ob_* in the actual response rendering
$media = $this->getData('media');
$fp = \fopen(($media->isAbsolute ? '' : __DIR__ . '/../../../../') . $media->getPath(), 'r');
\fpassthru($fp);
\fclose($fp);