42 lines
770 B
PHP
42 lines
770 B
PHP
<?php
|
|
|
|
namespace Kanboard\Filter;
|
|
|
|
use Kanboard\Core\Filter\FilterInterface;
|
|
use Kanboard\Model\Task;
|
|
|
|
/**
|
|
* Filter tasks by due date
|
|
*
|
|
* @package filter
|
|
* @author Frederic Guillot
|
|
*/
|
|
class TaskDueDateFilter extends BaseDateFilter implements FilterInterface
|
|
{
|
|
/**
|
|
* Get search attribute
|
|
*
|
|
* @access public
|
|
* @return string[]
|
|
*/
|
|
public function getAttributes()
|
|
{
|
|
return array('due');
|
|
}
|
|
|
|
/**
|
|
* Apply filter
|
|
*
|
|
* @access public
|
|
* @return FilterInterface
|
|
*/
|
|
public function apply()
|
|
{
|
|
$this->query->neq(Task::TABLE.'.date_due', 0);
|
|
$this->query->notNull(Task::TABLE.'.date_due');
|
|
$this->applyDateFilter(Task::TABLE.'.date_due');
|
|
|
|
return $this;
|
|
}
|
|
}
|