diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-09-28 14:26:40 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-09-28 14:26:40 -0400 |
commit | 03fa01ac7b036820ee232d893ec63241918c6012 (patch) | |
tree | 295e82e6552ffb044554a11afa95318a4e180f87 /app/Action/TaskDuplicateAnotherProject.php | |
parent | 0c8de6a3f58cde2696ac276b3456f3577d312e2b (diff) |
Improve automatic actions (check for compatible events/actions/parameters)
Diffstat (limited to 'app/Action/TaskDuplicateAnotherProject.php')
-rw-r--r-- | app/Action/TaskDuplicateAnotherProject.php | 45 |
1 files changed, 22 insertions, 23 deletions
diff --git a/app/Action/TaskDuplicateAnotherProject.php b/app/Action/TaskDuplicateAnotherProject.php index 0f14cbed..b76b3884 100644 --- a/app/Action/TaskDuplicateAnotherProject.php +++ b/app/Action/TaskDuplicateAnotherProject.php @@ -13,24 +13,17 @@ use Model\Task; class TaskDuplicateAnotherProject extends Base { /** - * Task model - * - * @accesss private - * @var \Model\Task - */ - private $task; - - /** - * Constructor + * Get the list of compatible events * * @access public - * @param integer $project_id Project id - * @param \Model\Task $task Task model instance + * @return array */ - public function __construct($project_id, Task $task) + public function getCompatibleEvents() { - parent::__construct($project_id); - $this->task = $task; + return array( + Task::EVENT_MOVE_COLUMN, + Task::EVENT_CLOSE, + ); } /** @@ -63,7 +56,7 @@ class TaskDuplicateAnotherProject extends Base } /** - * Execute the action + * Execute the action (duplicate the task to another project) * * @access public * @param array $data Event data dictionary @@ -71,14 +64,20 @@ class TaskDuplicateAnotherProject extends Base */ 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->duplicateToAnotherProject($this->getParam('project_id'), $task); - - return true; - } + $task = $this->task->getById($data['task_id']); + $this->task->duplicateToAnotherProject($this->getParam('project_id'), $task); + return true; + } - return false; + /** + * Check if the event data meet the action condition + * + * @access public + * @param array $data Event data dictionary + * @return bool + */ + public function hasRequiredCondition(array $data) + { + return $data['column_id'] == $this->getParam('column_id') && $data['project_id'] != $this->getParam('project_id'); } } |