45 lines
2.8 KiB
PHP
45 lines
2.8 KiB
PHP
<?php if (! empty($images)): ?>
|
|
<div class="file-thumbnails">
|
|
<?php foreach ($images as $file): ?>
|
|
<div class="file-thumbnail">
|
|
<?= $this->app->component('image-slideshow', array(
|
|
'images' => $images,
|
|
'image' => $file,
|
|
'regex' => 'FILE_ID',
|
|
'url' => array(
|
|
'image' => $this->url->to('FileViewerController', 'image', array('file_id' => 'FILE_ID', 'project_id' => $task['project_id'], 'task_id' => $task['id'])),
|
|
'thumbnail' => $this->url->to('FileViewerController', 'thumbnail', array('file_id' => 'FILE_ID', 'project_id' => $task['project_id'], 'task_id' => $task['id'])),
|
|
'download' => $this->url->to('FileViewerController', 'download', array('file_id' => 'FILE_ID', 'project_id' => $task['project_id'], 'task_id' => $task['id'])),
|
|
)
|
|
)) ?>
|
|
|
|
<div class="file-thumbnail-content">
|
|
<div class="file-thumbnail-title">
|
|
<div class="dropdown">
|
|
<a href="#" class="dropdown-menu dropdown-menu-link-text" title="<?= $this->text->e($file['name']) ?>"><?= $this->text->e($file['name']) ?> <i class="fa fa-caret-down"></i></a>
|
|
<ul>
|
|
<li>
|
|
<?= $this->url->icon('download', t('Download'), 'FileViewerController', 'download', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'file_id' => $file['id'])) ?>
|
|
</li>
|
|
<?php if ($this->user->hasProjectAccess('TaskFileController', 'remove', $task['project_id'])): ?>
|
|
<li>
|
|
<?= $this->modal->confirm('trash-o', t('Remove'), 'TaskFileController', 'confirm', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'file_id' => $file['id'])) ?>
|
|
</li>
|
|
<?php endif ?>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="file-thumbnail-description">
|
|
<?= $this->app->tooltipMarkdown(t('Uploaded: %s', $this->dt->datetime($file['date']))."\n\n".t('Size: %s', $this->text->bytes($file['size']))) ?>
|
|
<?php if (! empty($file['user_id'])): ?>
|
|
<?= t('Uploaded by %s', $file['user_name'] ?: $file['username']) ?>
|
|
<?php else: ?>
|
|
<?= t('Uploaded: %s', $this->dt->datetime($file['date'])) ?>
|
|
<?php endif ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endforeach ?>
|
|
</div>
|
|
<?php endif ?>
|