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