Files
Kanboard-Prod/app/Template/file_viewer/show.php
Rafael de Camargo c3012e0142 Fix text file preview
Escapes any html tags on text files
2019-05-26 20:54:42 +02:00

15 lines
541 B
PHP

<div class="page-header">
<h2><?= $this->text->e($file['name']) ?></h2>
</div>
<div class="file-viewer">
<?php if ($file['is_image']): ?>
<img src="<?= $this->url->href('FileViewerController', 'image', $params) ?>" alt="<?= $this->text->e($file['name']) ?>">
<?php elseif ($type === 'markdown'): ?>
<article class="markdown">
<?= $this->text->markdown($content) ?>
</article>
<?php elseif ($type === 'text'): ?>
<pre><?= $this->text->e($content) ?></pre>
<?php endif ?>
</div>