. /** * @package MantisBT * @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org * @copyright Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ /** * Prints the title for the custom action page. */ function action_update_severity_print_title() { echo ''; echo ''; echo lang_get( 'update_severity_title' ); echo ''; } /** * Prints the field within the custom action form. This has an entry for * every field the user need to supply + the submit button. The fields are * added as rows in a table that is already created by the calling code. * A row has two columns. */ function action_update_severity_print_fields() { echo ''; echo lang_get( 'update_severity_msg' ); echo ''; echo '
'; } /** * Validates the action on the specified bug id. * * @returns true Action can be applied. * @returns array( bug_id => reason for failure ) */ function action_update_severity_validate( $p_bug_id ) { $f_severity = gpc_get_string( 'severity' ); $t_failed_validation_ids = array(); $t_update_severity_threshold = config_get( 'update_bug_threshold' ); $t_bug_id = $p_bug_id; if ( bug_is_readonly( $t_bug_id ) ) { $t_failed_validation_ids[$t_bug_id] = lang_get( 'actiongroup_error_issue_is_readonly' ); return $t_failed_validation_ids; } if ( !access_has_bug_level( $t_update_severity_threshold, $t_bug_id ) ) { $t_failed_validation_ids[$t_bug_id] = lang_get( 'access_denied' ); return $t_failed_validation_ids; } return true; } /** * Executes the custom action on the specified bug id. * * @param $p_bug_id The bug id to execute the custom action on. * * @returns true Action executed successfully. * @returns array( bug_id => reason for failure ) */ function action_update_severity_process( $p_bug_id ) { $f_severity = gpc_get_string( 'severity' ); bug_set_field( $p_bug_id, 'severity', $f_severity ); return true; }