diff options
author | David Almond <david.almond@f-grp.com> | 2016-08-17 13:13:38 +0100 |
---|---|---|
committer | David Almond <david.almond@f-grp.com> | 2016-08-17 13:13:38 +0100 |
commit | ba99955771bf326753e371d400d91ac4f6065581 (patch) | |
tree | 52d42b3edeed13db4fb3e00fc6fe3aa28ab37134 /app/Action/TaskAssignPrioritySwimlane.php | |
parent | 98efcf21e355ed6ac3827058b99df86ca67c75bb (diff) | |
parent | e8ec7861af9205898d9ff2d5d7ca76a31224044b (diff) |
Merge branch '1032' into 'stable'
1032
See merge request !1
Diffstat (limited to 'app/Action/TaskAssignPrioritySwimlane.php')
-rw-r--r-- | app/Action/TaskAssignPrioritySwimlane.php | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/app/Action/TaskAssignPrioritySwimlane.php b/app/Action/TaskAssignPrioritySwimlane.php new file mode 100644 index 00000000..7eaca7c8 --- /dev/null +++ b/app/Action/TaskAssignPrioritySwimlane.php @@ -0,0 +1,99 @@ +<?php + +namespace Kanboard\Action; + +use Kanboard\Model\TaskModel; + +/** + * Set a priority automatically according to the Swimlane + * + * @package Kanboard\Action + * @author Dave Almond + */ +class TaskAssignPrioritySwimlane extends Base +{ + /** + * Get automatic action description + * + * @access public + * @return string + */ + public function getDescription() + { + return t('Assign a priority when the task is moved to a specific swimlane'); + } + + /** + * Get the list of compatible events + * + * @access public + * @return array + */ + public function getCompatibleEvents() + { + return array( + TaskModel::EVENT_CREATE, + TaskModel::EVENT_MOVE_SWIMLANE, + ); + } + + /** + * Get the required parameter for the action (defined by the user) + * + * @access public + * @return array + */ + public function getActionRequiredParameters() + { + return array( + 'swimlane_id' => t('Swimlane'), + 'priority' => t('Priority'), + ); + } + + /** + * Get the required parameter for the event + * + * @access public + * @return string[] + */ + public function getEventRequiredParameters() + { + return array( + 'task_id', + 'task' => array( + 'project_id', + 'swimlane_id', + ), + ); + } + + /** + * Execute the action (set the priority) + * + * @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) + { + $values = array( + 'id' => $data['task_id'], + 'priority' => $this->getParam('priority'), + ); + + return $this->taskModificationModel->update($values); + } + + /** + * 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['task']['swimlane_id'] == $this->getParam('swimlane_id'); + } +} |