39 lines
691 B
PHP
39 lines
691 B
PHP
<?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;
|
|
}
|
|
}
|