21 lines
922 B
PHP
21 lines
922 B
PHP
<div class="tooltip-large">
|
|
<table class="table-small">
|
|
<?php foreach ($files as $file): ?>
|
|
<tr>
|
|
<th>
|
|
<i class="fa <?= $this->file->icon($file['name']) ?> fa-fw"></i>
|
|
<?= $this->text->e($file['name']) ?>
|
|
</th>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<i class="fa fa-download fa-fw"></i><?= $this->url->link(t('download'), 'FileViewerController', 'download', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'file_id' => $file['id'])) ?>
|
|
<?php if ($file['is_image'] == 1): ?>
|
|
<?= $this->modal->large('eye', t('open file'), 'FileViewerController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'file_id' => $file['id'])) ?>
|
|
<?php endif ?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach ?>
|
|
</table>
|
|
</div>
|