diff options
author | Manish Lad <manish@lad.eu.com> | 2015-04-03 22:43:02 +0100 |
---|---|---|
committer | Manish Lad <manish@lad.eu.com> | 2015-04-03 22:43:02 +0100 |
commit | 248c160534a524c059f8bc541bfc1ac7ed8238cf (patch) | |
tree | d6fbf650dfceff7e136036a2050e60bb4f4dd48e /app/Action | |
parent | c72bca04a8be19b2da699ee58f9203f08318d241 (diff) |
Ability to assign a task color based on an event.
Initially supported event: task moved to a column
Diffstat (limited to 'app/Action')
-rw-r--r-- | app/Action/TaskAssignColor.php | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/app/Action/TaskAssignColor.php b/app/Action/TaskAssignColor.php new file mode 100644 index 00000000..b1da17e9 --- /dev/null +++ b/app/Action/TaskAssignColor.php @@ -0,0 +1,83 @@ +<?php + +namespace Action; + +use Model\Task; + +/** + * Assign a color to a task + * + * @package action + */ +class TaskAssignColor extends Base +{ + /** + * Get the list of compatible events + * + * @access public + * @return array + */ + public function getCompatibleEvents() + { + return array( + Task::EVENT_MOVE_COLUMN, + ); + } + + /** + * Get the required parameter for the action (defined by the user) + * + * @access public + * @return array + */ + public function getActionRequiredParameters() + { + return array( + 'column_id' => t('Column'), + 'color_id' => t('Color'), + ); + } + + /** + * Get the required parameter for the event + * + * @access public + * @return string[] + */ + public function getEventRequiredParameters() + { + return array( + 'task_id', + 'column_id', + ); + } + + /** + * Execute the action (set the task color) + * + * @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'], + 'color_id' => $this->getParam('color_id'), + ); + + return $this->taskModification->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['column_id'] == $this->getParam('column_id'); + } +} |