t('Category'), 'link_id' => t('Link type'), ); } /** * Get the required parameter for the event * * @access public * @return string[] */ public function getEventRequiredParameters() { return array( 'task_link' => array( 'task_id', 'link_id', ) ); } /** * Execute the action (change the category) * * @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_link']['task_id'], 'category_id' => $this->getParam('category_id'), ); 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) { if ($data['task_link']['link_id'] == $this->getParam('link_id')) { return empty($data['task']['category_id']); } return false; } }