Add column restrictions to custom project roles
This commit is contained in:
@@ -24,7 +24,11 @@
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-plus fa-fw" aria-hidden="true"></i>
|
||||
<?= $this->url->link(t('Add a new column restriction'), 'ColumnMoveRestrictionController', 'create', array('project_id' => $project['id'], 'role_id' => $role['role_id']), false, 'popover') ?>
|
||||
<?= $this->url->link(t('Add a new drag and drop restriction'), 'ColumnMoveRestrictionController', 'create', array('project_id' => $project['id'], 'role_id' => $role['role_id']), false, 'popover') ?>
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-plus fa-fw" aria-hidden="true"></i>
|
||||
<?= $this->url->link(t('Add a new column restriction'), 'ColumnRestrictionController', 'create', array('project_id' => $project['id'], 'role_id' => $role['role_id']), false, 'popover') ?>
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-pencil fa-fw" aria-hidden="true"></i>
|
||||
@@ -41,7 +45,7 @@
|
||||
<?= t('Actions') ?>
|
||||
</th>
|
||||
</tr>
|
||||
<?php if (empty($role['project_restrictions']) && empty($role['column_restrictions'])): ?>
|
||||
<?php if (empty($role['project_restrictions']) && empty($role['column_restrictions']) && empty($role['column_move_restrictions'])): ?>
|
||||
<tr>
|
||||
<td colspan="2"><?= t('There is no restriction for this role.') ?></td>
|
||||
</tr>
|
||||
@@ -49,6 +53,9 @@
|
||||
<?php foreach ($role['project_restrictions'] as $restriction): ?>
|
||||
<tr>
|
||||
<td>
|
||||
<i class="fa fa-ban fa-fw" aria-hidden="true"></i>
|
||||
<strong><?= t('Project') ?></strong>
|
||||
<i class="fa fa-arrow-right fa-fw" aria-hidden="true"></i>
|
||||
<?= $this->text->e($restriction['title']) ?>
|
||||
</td>
|
||||
<td>
|
||||
@@ -60,7 +67,28 @@
|
||||
<?php foreach ($role['column_restrictions'] as $restriction): ?>
|
||||
<tr>
|
||||
<td>
|
||||
<?= t('Only moving task from the column "%s" to "%s" is permitted', $restriction['src_column_title'], $restriction['dst_column_title']) ?>
|
||||
<?php if (strpos($restriction['rule'], 'block') === 0): ?>
|
||||
<i class="fa fa-ban fa-fw" aria-hidden="true"></i>
|
||||
<?php else: ?>
|
||||
<i class="fa fa-check-circle-o fa-fw" aria-hidden="true"></i>
|
||||
<?php endif ?>
|
||||
<strong><?= $this->text->e($restriction['column_title']) ?></strong>
|
||||
<i class="fa fa-arrow-right fa-fw" aria-hidden="true"></i>
|
||||
<?= $this->text->e($restriction['title']) ?>
|
||||
</td>
|
||||
<td>
|
||||
<i class="fa fa-trash-o fa-fw" aria-hidden="true"></i>
|
||||
<?= $this->url->link(t('Remove'), 'ColumnRestrictionController', 'confirm', array('project_id' => $project['id'], 'restriction_id' => $restriction['restriction_id']), false, 'popover') ?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach ?>
|
||||
<?php foreach ($role['column_move_restrictions'] as $restriction): ?>
|
||||
<tr>
|
||||
<td>
|
||||
<i class="fa fa-check-circle-o fa-fw" aria-hidden="true"></i>
|
||||
<strong><?= $this->text->e($restriction['src_column_title']) ?> / <?= $this->text->e($restriction['dst_column_title']) ?></strong>
|
||||
<i class="fa fa-arrow-right fa-fw" aria-hidden="true"></i>
|
||||
<?= t('Only moving task between those columns is permitted') ?>
|
||||
</td>
|
||||
<td>
|
||||
<i class="fa fa-trash-o fa-fw" aria-hidden="true"></i>
|
||||
|
||||
Reference in New Issue
Block a user