PHP Classes

File: Template/board/filter.php

Recommend this page to a friend!
  Classes of kiran   Kanboard Group Assign   Template/board/filter.php   Download  
File: Template/board/filter.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Kanboard Group Assign
Plugin to assign tasks to groups or multiple users
Author: By
Last change:
Date: 3 years ago
Size: 584 bytes
 

Contents

Class file image Download
<?php if (isset($grouplist) && !empty($grouplist)) : ?>
</div>
<div class="input-addon-item">
    <div class="dropdown">
        <a href="#" class="dropdown-menu dropdown-menu-link-icon" title="<?= t('Group filters') ?>"><i class="fa fa-users fa-fw"></i><i class="fa fa-caret-down"></i></a>
        <ul>
            <?php foreach ($grouplist as $group) : ?>
<li><a href="#" class="filter-helper" data-unique-filter='allassignees:"<?= $this->text->e($group) ?>"'><?= $this->text->e($group) ?></a></li>
            <?php endforeach ?>
</ul>
    </div>
<?php endif ?>