summaryrefslogtreecommitdiff
path: root/app/Action
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-05-27 11:40:07 -0400
committerFrédéric Guillot <fred@kanboard.net>2014-05-27 11:40:07 -0400
commitc482e704697301a982e3c989ac795e0f4c2e899a (patch)
treeaaeba920ba4218792afac198e6b43ea619ff5a53 /app/Action
parent73944ae3687525eb7fafa0a0de2b919b51974542 (diff)
Add a new automatic action: assign a category based on a defined color
Diffstat (limited to 'app/Action')
-rw-r--r--app/Action/TaskAssignCategoryColor.php85
1 files changed, 85 insertions, 0 deletions
diff --git a/app/Action/TaskAssignCategoryColor.php b/app/Action/TaskAssignCategoryColor.php
new file mode 100644
index 00000000..19d7fa9c
--- /dev/null
+++ b/app/Action/TaskAssignCategoryColor.php
@@ -0,0 +1,85 @@
+<?php
+
+namespace Action;
+
+use Model\Task;
+
+/**
+ * Set a category automatically according to the color
+ *
+ * @package action
+ * @author Frederic Guillot
+ */
+class TaskAssignCategoryColor extends Base
+{
+ /**
+ * Task model
+ *
+ * @accesss private
+ * @var \Model\Task
+ */
+ private $task;
+
+ /**
+ * Constructor
+ *
+ * @access public
+ * @param integer $project_id Project id
+ * @param \Model\Task $task Task model instance
+ */
+ public function __construct($project_id, Task $task)
+ {
+ parent::__construct($project_id);
+ $this->task = $task;
+ }
+
+ /**
+ * Get the required parameter for the action (defined by the user)
+ *
+ * @access public
+ * @return array
+ */
+ public function getActionRequiredParameters()
+ {
+ return array(
+ 'color_id' => t('Color'),
+ 'category_id' => t('Category'),
+ );
+ }
+
+ /**
+ * Get the required parameter for the event
+ *
+ * @access public
+ * @return string[]
+ */
+ public function getEventRequiredParameters()
+ {
+ return array(
+ 'task_id',
+ 'color_id',
+ );
+ }
+
+ /**
+ * Execute the action
+ *
+ * @access public
+ * @param array $data Event data dictionary
+ * @return bool True if the action was executed or false when not executed
+ */
+ public function doAction(array $data)
+ {
+ if ($data['color_id'] == $this->getParam('color_id')) {
+
+ $this->task->update(array(
+ 'id' => $data['task_id'],
+ 'category_id' => $this->getParam('category_id'),
+ ));
+
+ return true;
+ }
+
+ return false;
+ }
+}