11 lines
484 B
PHP
11 lines
484 B
PHP
|
|
<?php if ($column['nb_tasks'] > 0 && $this->user->hasProjectAccess('TaskModificationController', 'update', $column['project_id'])): ?>
|
||
|
|
<li>
|
||
|
|
<?= $this->modal->medium('arrows-h', t('Move all tasks to another column'), 'BulkMoveController', 'show', array(
|
||
|
|
'plugin' => 'BulkMoveTasks',
|
||
|
|
'project_id' => $column['project_id'],
|
||
|
|
'column_id' => $column['id'],
|
||
|
|
'swimlane_id' => $swimlane['id'],
|
||
|
|
)) ?>
|
||
|
|
</li>
|
||
|
|
<?php endif ?>
|