mirror of
https://github.com/Karaka-Management/oms-Media.git
synced 2026-01-22 05:58:41 +00:00
12 lines
390 B
PHP
Executable File
12 lines
390 B
PHP
Executable File
<?php declare(strict_types=1);
|
|
|
|
use phpOMS\Uri\UriFactory;
|
|
|
|
?>
|
|
<section id="mediaFile" class="portlet">
|
|
<div class="portlet-body">
|
|
<div class="h-overflow centerText">
|
|
<img style="max-width: 100%" src="<?= UriFactory::build('{/api}media/export?id=' . $this->media->getId()); ?>" alt="<?= $this->printHtml($this->media->name); ?>">
|
|
</div>
|
|
</div>
|
|
</section>
|