Add search within a range of dates for creation/moved date fields

This commit is contained in:
Kamil
2018-07-17 06:24:28 +02:00
committed by Frédéric Guillot
parent 196ccb2131
commit fe935d6ec1
6 changed files with 144 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
<?php
namespace Kanboard\Filter;
use Kanboard\Core\Filter\FilterInterface;
use Kanboard\Model\TaskModel;
/**
* Filter tasks by creation date
*
* @package filter
* @author Kamil Ściana
*/
class TaskMovedDateRangeFilter extends BaseDateRangeFilter implements FilterInterface
{
/**
* Get search attribute
*
* @access public
* @return string[]
*/
public function getAttributes()
{
return array('movedRange');
}
/**
* Apply filter
*
* @access public
* @return FilterInterface
*/
public function apply()
{
$this->applyDateFilter(TaskModel::TABLE.'.date_moved');
return $this;
}
}