ADD: TaskMovedDateFilter

This commit is contained in:
Christopher Geelen
2016-07-27 15:06:01 +02:00
parent 2474518272
commit 2363da274c
3 changed files with 85 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 modification date
*
* @package filter
* @author Frederic Guillot
*/
class TaskMovedDateFilter extends BaseDateFilter implements FilterInterface
{
/**
* Get search attribute
*
* @access public
* @return string[]
*/
public function getAttributes()
{
return array('moved');
}
/**
* Apply filter
*
* @access public
* @return FilterInterface
*/
public function apply()
{
$this->applyDateFilter(TaskModel::TABLE.'.date_moved');
return $this;
}
}