kb / app /Filter /TaskSwimlaneFilter.php
Xv Zan
ULFS
e4f4821
raw
history blame contribute delete
748 Bytes
<?php
namespace Kanboard\Filter;
use Kanboard\Core\Filter\FilterInterface;
use Kanboard\Model\ProjectModel;
use Kanboard\Model\SwimlaneModel;
use Kanboard\Model\TaskModel;
/**
* Filter tasks by swimlane
*
* @package filter
* @author Frederic Guillot
*/
class TaskSwimlaneFilter extends BaseFilter implements FilterInterface
{
/**
* Get search attribute
*
* @access public
* @return string[]
*/
public function getAttributes()
{
return array('swimlane');
}
/**
* Apply filter
*
* @access public
* @return FilterInterface
*/
public function apply()
{
$this->query->ilike(SwimlaneModel::TABLE.'.name', $this->value);
return $this;
}
}