summaryrefslogtreecommitdiff
path: root/app/Filter
diff options
context:
space:
mode:
authorChristopher Geelen <christopher.geelen@vinotion.nl>2016-07-27 15:06:01 +0200
committerChristopher Geelen <christopher.geelen@vinotion.nl>2016-07-27 15:06:01 +0200
commit2363da274c412cdd0dc2fc68b8f45222f4467a0a (patch)
treee73eaa1bf3f5e61af533b816561e43fcf4eaaa55 /app/Filter
parent24745182724ca69092554eb5946e31584420f68a (diff)
ADD: TaskMovedDateFilter
Diffstat (limited to 'app/Filter')
-rw-r--r--app/Filter/TaskMovedDateFilter.php38
1 files changed, 38 insertions, 0 deletions
diff --git a/app/Filter/TaskMovedDateFilter.php b/app/Filter/TaskMovedDateFilter.php
new file mode 100644
index 00000000..d57b7d23
--- /dev/null
+++ b/app/Filter/TaskMovedDateFilter.php
@@ -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;
+ }
+}