summaryrefslogtreecommitdiff
path: root/app/Action/TaskMoveAnotherProject.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-09-01 18:14:40 -0800
committerFrédéric Guillot <fred@kanboard.net>2014-09-01 18:14:40 -0800
commite4965546543be040da29dc341900fa9511a158be (patch)
treea17cc50c942331204061f220af43df9cce583198 /app/Action/TaskMoveAnotherProject.php
parent52f9c82e303189b873dc21142cdcf7f9334ea78c (diff)
Add an automated action to move a task to another project
Diffstat (limited to 'app/Action/TaskMoveAnotherProject.php')
-rw-r--r--app/Action/TaskMoveAnotherProject.php84
1 files changed, 84 insertions, 0 deletions
diff --git a/app/Action/TaskMoveAnotherProject.php b/app/Action/TaskMoveAnotherProject.php
new file mode 100644
index 00000000..8091053e
--- /dev/null
+++ b/app/Action/TaskMoveAnotherProject.php
@@ -0,0 +1,84 @@
+<?php
+
+namespace Action;
+
+use Model\Task;
+
+/**
+ * Move a task to another project
+ *
+ * @package action
+ * @author Frederic Guillot
+ */
+class TaskMoveAnotherProject 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(
+ 'column_id' => t('Column'),
+ 'project_id' => t('Project'),
+ );
+ }
+
+ /**
+ * Get the required parameter for the event
+ *
+ * @access public
+ * @return string[]
+ */
+ public function getEventRequiredParameters()
+ {
+ return array(
+ 'task_id',
+ 'column_id',
+ 'project_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['column_id'] == $this->getParam('column_id') && $data['project_id'] != $this->getParam('project_id')) {
+
+ $task = $this->task->getById($data['task_id']);
+ $this->task->moveToAnotherProject($this->getParam('project_id'), $task);
+
+ return true;
+ }
+
+ return false;
+ }
+}