diff options
author | Frédéric Guillot <fred@kanboard.net> | 2018-05-10 14:11:22 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2018-05-10 14:11:22 -0700 |
commit | ecc9d80671fdfd4434ac7ecf3113507e6a06da64 (patch) | |
tree | 0ac26c4855812450bfd2ea664c6d50f44727de9a /app/Template | |
parent | 56c2a6e5433819449f2b08c334f9e9992a68d65f (diff) |
Add link to open images in a new tab
Diffstat (limited to 'app/Template')
-rw-r--r-- | app/Template/board/tooltip_files.php | 5 | ||||
-rw-r--r-- | app/Template/project_overview/images.php | 3 | ||||
-rw-r--r-- | app/Template/task_file/images.php | 3 |
3 files changed, 9 insertions, 2 deletions
diff --git a/app/Template/board/tooltip_files.php b/app/Template/board/tooltip_files.php index 5cb72741..390139eb 100644 --- a/app/Template/board/tooltip_files.php +++ b/app/Template/board/tooltip_files.php @@ -9,9 +9,10 @@ </tr> <tr> <td> - <?= $this->url->icon('download', t('download'), 'FileViewerController', 'download', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'file_id' => $file['id'])) ?> + <?= $this->url->icon('download', 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'])) ?> + <?= $this->modal->large('eye', t('View file'), 'FileViewerController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'file_id' => $file['id'])) ?> + <?= $this->url->icon('external-link', t('View file'), 'FileViewerController', 'image', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'file_id' => $file['id']), false, '', '', true) ?> <?php endif ?> </td> </tr> diff --git a/app/Template/project_overview/images.php b/app/Template/project_overview/images.php index bc356fc2..dea26eb7 100644 --- a/app/Template/project_overview/images.php +++ b/app/Template/project_overview/images.php @@ -19,6 +19,9 @@ <a href="#" class="dropdown-menu dropdown-menu-link-text"><?= $this->text->e($file['name']) ?> <i class="fa fa-caret-down"></i></a> <ul> <li> + <?= $this->url->icon('external-link', t('View file'), 'FileViewerController', 'image', array('project_id' => $project['id'], 'file_id' => $file['id']), false, '', '', true) ?> + </li> + <li> <?= $this->url->icon('download', t('Download'), 'FileViewerController', 'download', array('project_id' => $project['id'], 'file_id' => $file['id'])) ?> </li> <?php if ($this->user->hasProjectAccess('ProjectFileController', 'remove', $project['id'])): ?> diff --git a/app/Template/task_file/images.php b/app/Template/task_file/images.php index c03e5648..997aed00 100644 --- a/app/Template/task_file/images.php +++ b/app/Template/task_file/images.php @@ -19,6 +19,9 @@ <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('external-link', t('View file'), 'FileViewerController', 'image', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'file_id' => $file['id']), false, '', '', true) ?> + </li> + <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'])): ?> |