summaryrefslogtreecommitdiff
path: root/app/Template/task_list
diff options
context:
space:
mode:
Diffstat (limited to 'app/Template/task_list')
-rw-r--r--app/Template/task_list/header.php18
-rw-r--r--app/Template/task_list/listing.php2
-rw-r--r--app/Template/task_list/task_title.php3
3 files changed, 23 insertions, 0 deletions
diff --git a/app/Template/task_list/header.php b/app/Template/task_list/header.php
index 7704e2df..599286aa 100644
--- a/app/Template/task_list/header.php
+++ b/app/Template/task_list/header.php
@@ -6,6 +6,24 @@
<?= t('%d task', $paginator->getTotal()) ?>
<?php endif ?>
</div>
+ <?php if (isset($show_items_selection)): ?>
+ <?php if ($this->user->hasProjectAccess('TaskModificationController', 'save', $project['id'])): ?>
+ <div class="list-item-links">
+ <a href="#" data-list-item-selection="all"><?= t('Select All') ?></a> / <a href="#" data-list-item-selection="none"><?= t('Unselect All') ?></a>
+ </div>
+ <div class="list-item-actions list-item-action-hidden">
+ -&nbsp;
+ <div class="dropdown">
+ <a href="#" class="dropdown-menu dropdown-menu-link-icon"><strong><?= t('Apply action') ?> <i class="fa fa-caret-down"></i></strong></a>
+ <ul>
+ <li>
+ <a href="<?= $this->url->href('TaskBulkMoveColumnController', 'show', ['project_id' => $project['id']]) ?>" data-list-item-action="modal"><?= t('Move selected tasks to another column') ?></a>
+ </li>
+ </ul>
+ </div>
+ </div>
+ <?php endif ?>
+ <?php endif ?>
<div class="table-list-header-menu">
<?php if (isset($project)): ?>
<?php if ($this->user->hasSubtaskListActivated()): ?>
diff --git a/app/Template/task_list/listing.php b/app/Template/task_list/listing.php
index 97393972..7891b543 100644
--- a/app/Template/task_list/listing.php
+++ b/app/Template/task_list/listing.php
@@ -7,12 +7,14 @@
<?= $this->render('task_list/header', array(
'paginator' => $paginator,
'project' => $project,
+ 'show_items_selection' => true,
)) ?>
<?php foreach ($paginator->getCollection() as $task): ?>
<div class="table-list-row color-<?= $task['color_id'] ?>">
<?= $this->render('task_list/task_title', array(
'task' => $task,
+ 'show_items_selection' => true,
)) ?>
<?= $this->render('task_list/task_details', array(
diff --git a/app/Template/task_list/task_title.php b/app/Template/task_list/task_title.php
index 028e9b70..92d61b6c 100644
--- a/app/Template/task_list/task_title.php
+++ b/app/Template/task_list/task_title.php
@@ -1,5 +1,8 @@
<div>
<?php if ($this->user->hasProjectAccess('TaskModificationController', 'edit', $task['project_id'])): ?>
+ <?php if (isset($show_items_selection)): ?>
+ <input type="checkbox" data-list-item="selectable" name="tasks[]" value="<?= $task['id'] ?>">
+ <?php endif ?>
<?= $this->render('task/dropdown', array('task' => $task)) ?>
<?php else: ?>
<strong><?= '#'.$task['id'] ?></strong>