summaryrefslogtreecommitdiff
path: root/app/Template/file_viewer/show.php
blob: e0d1b21e9a4d8841cbcd95242039f93032db6c47 (plain)
1
2
3
4
5
6
7
8
<div class="page-header">
    <h2><?= $this->e($file['name']) ?></h2>
    <div class="task-file-viewer">
        <?php if ($file['is_image']): ?>
            <img src="<?= $this->url->href('FileViewer', 'image', $params) ?>" alt="<?= $this->e($file['name']) ?>">
        <?php endif ?>
    </div>
</div>