%PDF- %PDF-
Direktori : /www/loslex_o/tracker/ |
Current File : /www/loslex_o/tracker/bug_actiongroup_page.php |
<?php # MantisBT - A PHP based bugtracking system # MantisBT is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 2 of the License, or # (at your option) any later version. # # MantisBT is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with MantisBT. If not, see <http://www.gnu.org/licenses/>. /** * This page allows actions to be performed on an array of bugs * * @package MantisBT * @copyright Copyright 2000 - 2002 Kenzaburo Ito - kenito@300baud.org * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org * * @uses core.php * @uses access_api.php * @uses authentication_api.php * @uses bug_api.php * @uses bug_group_action_api.php * @uses config_api.php * @uses constant_inc.php * @uses custom_field_api.php * @uses event_api.php * @uses form_api.php * @uses gpc_api.php * @uses helper_api.php * @uses lang_api.php * @uses print_api.php * @uses string_api.php * @uses utility_api.php * @uses version_api.php */ require_once( 'core.php' ); require_api( 'access_api.php' ); require_api( 'authentication_api.php' ); require_api( 'bug_api.php' ); require_api( 'bug_group_action_api.php' ); require_api( 'config_api.php' ); require_api( 'constant_inc.php' ); require_api( 'custom_field_api.php' ); require_api( 'event_api.php' ); require_api( 'form_api.php' ); require_api( 'gpc_api.php' ); require_api( 'helper_api.php' ); require_api( 'lang_api.php' ); require_api( 'print_api.php' ); require_api( 'string_api.php' ); require_api( 'utility_api.php' ); require_api( 'version_api.php' ); auth_ensure_user_authenticated(); $f_action = gpc_get_string( 'action', '' ); $f_bug_arr = gpc_get_int_array( 'bug_arr', array() ); # redirects to all_bug_page if nothing is selected if( is_blank( $f_action ) || ( 0 == count( $f_bug_arr ) ) ) { print_header_redirect( 'view_all_bug_page.php' ); } # run through the issues to see if they are all from one project $t_project_id = ALL_PROJECTS; $t_multiple_projects = false; $t_user = auth_get_current_user_id(); $t_projects = array(); $t_view_bug_threshold = array(); bug_cache_array_rows( $f_bug_arr ); foreach( $f_bug_arr as $t_key => $t_bug_id ) { $t_bug = bug_get( $t_bug_id ); # Per-project cache of the access threshold if( !isset( $t_view_bug_threshold[$t_bug->project_id] ) ) { $t_view_bug_threshold[$t_bug->project_id] = config_get( 'view_bug_threshold', null, $t_user, $t_bug->project_id ); } # Remove any issues the user doesn't have access to if( !access_has_bug_level( $t_view_bug_threshold[$t_bug->project_id], $t_bug_id ) ) { unset( $f_bug_arr[$t_key] ); continue; } # Multiple projects check if( $t_project_id != $t_bug->project_id ) { if( ( $t_project_id != ALL_PROJECTS ) && !$t_multiple_projects ) { $t_multiple_projects = true; } else { $t_project_id = $t_bug->project_id; $t_projects[$t_project_id] = $t_project_id; } } } # Array of parameters to be used with plugin event $t_event_params = array(); $t_event_params['bug_ids'] = $f_bug_arr; $t_event_params['action'] = $f_action; $t_event_params['has_bugnote'] = false; $t_event_params['multiple_projects'] = $t_multiple_projects; if( $t_multiple_projects ) { $t_project_id = ALL_PROJECTS; $t_projects[ALL_PROJECTS] = ALL_PROJECTS; } # override the project if necessary if( $t_project_id != helper_get_current_project() ) { # in case the current project is not the same project of the bug we are viewing... # ... override the current project. This to avoid problems with categories and handlers lists etc. $g_project_override = $t_project_id; } define( 'BUG_ACTIONGROUP_INC_ALLOW', true ); $t_finished = false; $t_bugnote = false; $t_external_action_prefix = 'EXT_'; if( strpos( $f_action, $t_external_action_prefix ) === 0 ) { $t_form_page = 'bug_actiongroup_ext_page.php'; require_once( $t_form_page ); exit; } $t_custom_group_actions = config_get( 'custom_group_actions' ); foreach( $t_custom_group_actions as $t_custom_group_action ) { if( $f_action == $t_custom_group_action['action'] ) { require_once( $t_custom_group_action['form_page'] ); exit; } } # Check if user selected to update a custom field. $t_custom_fields_prefix = 'custom_field_'; if( strpos( $f_action, $t_custom_fields_prefix ) === 0 ) { $t_custom_field_id = (int)substr( $f_action, mb_strlen( $t_custom_fields_prefix ) ); $f_action = 'CUSTOM'; $t_event_params['action'] = $f_action; } # Form name $t_form_name = 'bug_actiongroup_' . $f_action; switch( $f_action ) { # Use a simple confirmation page, if close or delete... case 'CLOSE' : $t_finished = true; $t_question_title = lang_get( 'close_bugs_conf_msg' ); $t_button_title = lang_get( 'close_group_bugs_button' ); $t_bugnote = true; break; case 'DELETE' : $t_finished = true; $t_question_title = lang_get( 'delete_bugs_conf_msg' ); $t_button_title = lang_get( 'delete_group_bugs_button' ); break; case 'SET_STICKY' : $t_finished = true; $t_question_title = lang_get( 'set_sticky_bugs_conf_msg' ); $t_button_title = lang_get( 'set_sticky_group_bugs_button' ); break; # ...else we define the variables used in the form case 'MOVE' : $t_question_title = lang_get( 'move_bugs_conf_msg' ); $t_button_title = lang_get( 'move_group_bugs_button' ); $t_form = 'project_id'; break; case 'COPY' : $t_question_title = lang_get( 'copy_bugs_conf_msg' ); $t_button_title = lang_get( 'copy_group_bugs_button' ); $t_form = 'project_id'; break; case 'ASSIGN' : $t_question_title = lang_get( 'assign_bugs_conf_msg' ); $t_button_title = lang_get( 'assign_group_bugs_button' ); $t_form = 'assign'; break; case 'RESOLVE' : $t_question_title = lang_get( 'resolve_bugs_conf_msg' ); $t_button_title = lang_get( 'resolve_group_bugs_button' ); $t_form = 'resolution'; if( ALL_PROJECTS != $t_project_id ) { $t_question_title2 = lang_get( 'fixed_in_version' ); $t_form2 = 'fixed_in_version'; } $t_bugnote = true; break; case 'UP_PRIOR' : $t_question_title = lang_get( 'priority_bugs_conf_msg' ); $t_button_title = lang_get( 'priority_group_bugs_button' ); $t_form = 'priority'; break; case 'UP_STATUS' : $t_question_title = lang_get( 'status_bugs_conf_msg' ); $t_button_title = lang_get( 'status_group_bugs_button' ); $t_form = 'status'; $t_bugnote = true; break; case 'UP_CATEGORY' : $t_question_title = lang_get( 'category_bugs_conf_msg' ); $t_button_title = lang_get( 'category_group_bugs_button' ); $t_form = 'category'; break; case 'VIEW_STATUS' : $t_question_title = lang_get( 'view_status_bugs_conf_msg' ); $t_button_title = lang_get( 'view_status_group_bugs_button' ); $t_form = 'view_status'; break; case 'UP_PRODUCT_VERSION': $t_question_title = lang_get( 'product_version_bugs_conf_msg' ); $t_button_title = lang_get( 'product_version_group_bugs_button' ); $t_form = 'product_version'; break; case 'UP_FIXED_IN_VERSION': $t_question_title = lang_get( 'fixed_in_version_bugs_conf_msg' ); $t_button_title = lang_get( 'fixed_in_version_group_bugs_button' ); $t_form = 'fixed_in_version'; break; case 'UP_TARGET_VERSION': $t_question_title = lang_get( 'target_version_bugs_conf_msg' ); $t_button_title = lang_get( 'target_version_group_bugs_button' ); $t_form = 'target_version'; break; case 'UP_DUE_DATE': $t_question_title = lang_get( 'due_date_bugs_conf_msg' ); $t_button_title = lang_get( 'due_date_group_bugs_button' ); $t_form = 'due_date'; break; case 'CUSTOM' : $t_custom_field_def = custom_field_get_definition( $t_custom_field_id ); $t_question_title = sprintf( lang_get( 'actiongroup_menu_update_field' ), string_attribute( lang_get_defaulted( $t_custom_field_def['name'] ) ) ); $t_button_title = $t_question_title; $t_form = 'custom_field_' . $t_custom_field_id; $t_event_params['custom_field_id'] = $t_custom_field_id; break; default: trigger_error( ERROR_GENERIC, ERROR ); } $t_event_params['has_bugnote'] = $t_bugnote; bug_group_action_print_top(); ?> <div class="col-md-12 col-xs-12"> <?php if( $t_multiple_projects ) { echo '<div class="alert alert-warning"> <p class="bold">' . lang_get( 'multiple_projects' ) . '</p> </div>'; } ?> <div id="action-group-div" class="form-container"> <form method="post" action="bug_actiongroup.php"> <?php echo form_security_field( $t_form_name ); ?> <input type="hidden" name="action" value="<?php echo string_attribute( $f_action ) ?>" /> <?php bug_group_action_print_hidden_fields( $f_bug_arr ); if( $f_action === 'CUSTOM' ) { echo "<input type=\"hidden\" name=\"custom_field_id\" value=\"$t_custom_field_id\" />"; } ?> <div class="widget-box widget-color-blue2"> <div class="widget-header widget-header-small"> <h4 class="widget-title lighter"> <?php echo $t_question_title ?> </h4> </div> <div class="widget-body"> <div class="widget-main no-padding"> <div class="table-responsive"> <table class="table table-bordered table-condensed table-striped"> <tbody> <?php if( !$t_finished ) { ?> <tr> <th class="category"> <?php echo $t_question_title ?> </th> <td> <?php if( $f_action === 'CUSTOM' ) { $t_custom_field_def = custom_field_get_definition( $t_custom_field_id ); $t_bug_id = null; # if there is only one issue, use its current value as default, otherwise, # use the default value specified in custom field definition. if( count( $f_bug_arr ) == 1 ) { $t_bug_id = $f_bug_arr[0]; } print_custom_field_input( $t_custom_field_def, $t_bug_id ); } else if ( $f_action === 'UP_DUE_DATE' ) { $t_date_to_display = ''; # if there is only one issue, use its current value as default if( count( $f_bug_arr ) == 1 ) { $t_bug_id = $f_bug_arr[0]; $t_bug = bug_get( $t_bug_id ); if( !date_is_null( $t_bug->due_date ) ) { $t_date_to_display = date( config_get( 'normal_date_format' ), $t_bug->due_date ); } } echo '<input type="text" id="due_date" name="due_date" class="datetimepicker input-sm" size="16" maxlength="16" ' . 'data-picker-locale="' . lang_get_current_datetime_locale() . '" data-picker-format="' . config_get( 'datetime_picker_format' ) . '"' . '" value="' . $t_date_to_display . '" />'; print_icon( 'fa-calendar', 'fa-xlg datetimepicker' ); } else { echo '<select name="' . $t_form . '" class="input-sm" required>'; switch( $f_action ) { case 'COPY': case 'MOVE': print_project_option_list( null /* $p_project_id */, false /* $p_include_all_projects */, null /* $p_filter_project_id */, false /* $p_trace */, true /* $p_can_report_only */ ); break; case 'ASSIGN': print_assign_to_option_list( 0, $t_project_id ); break; case 'RESOLVE': print_enum_string_option_list( 'resolution', config_get( 'bug_resolution_fixed_threshold' ) ); break; case 'UP_PRIOR': print_enum_string_option_list( 'priority', config_get( 'default_bug_priority' ) ); break; case 'UP_STATUS': print_enum_string_option_list( 'status', config_get( 'bug_submit_status' ) ); break; case 'UP_CATEGORY': print_category_option_list(); break; case 'VIEW_STATUS': print_enum_string_option_list( 'view_state', config_get( 'default_bug_view_status' ) ); break; case 'UP_TARGET_VERSION': print_version_option_list( '', $t_projects, VERSION_FUTURE, true ); break; case 'UP_PRODUCT_VERSION': case 'UP_FIXED_IN_VERSION': print_version_option_list( '', $t_projects, VERSION_ALL, true ); break; } echo '</select>'; } ?> </td> </tr> <?php if( isset( $t_question_title2 ) ) { switch( $f_action ) { case 'RESOLVE': $t_show_product_version = ( ON == config_get( 'show_product_version' ) ) || ( ( AUTO == config_get( 'show_product_version' ) ) && ( count( version_get_all_rows( $t_project_id ) ) > 0 ) ); if( $t_show_product_version ) { ?> <tr> <th class="category"> <?php echo $t_question_title2 ?> </th> <td> <select name="<?php echo $t_form2 ?>" class="input-sm"> <?php print_version_option_list( '', null, VERSION_ALL );?> </select> </td> </tr> <?php } break; } } } else { ?> <tr> <th class="category" colspan="2"> <?php echo $t_question_title; ?> </th> </tr> <?php } # signal plugin event for additional fields event_signal( 'EVENT_BUG_ACTIONGROUP_FORM', array( $t_event_params ) ); if( $t_bugnote ) { $t_default_bugnote_view_status = config_get( 'default_bugnote_view_status' ); $t_bugnote_private = $t_default_bugnote_view_status == VS_PRIVATE; $t_bugnote_class = $t_bugnote_private ? 'form-control bugnote-private' : 'form-control'; ?> <tr> <th class="category"> <?php echo lang_get( 'add_bugnote_title' ); ?> </th> <td> <textarea name="bugnote_text" id="bugnote_text" class="<?php echo $t_bugnote_class ?>" cols="80" rows="7"></textarea> </td> </tr> <?php if( access_has_project_level( config_get( 'private_bugnote_threshold' ), $t_project_id ) ) { ?> <tr> <th class="category"> <?php echo lang_get( 'view_status' ) ?> </th> <td> <?php if( access_has_project_level( config_get( 'set_view_status_threshold' ), $t_project_id ) ) { ?> <input type="checkbox" class="ace" name="private" <?php check_checked( $t_default_bugnote_view_status, VS_PRIVATE ); ?> /> <label class="lbl padding-6"><?php echo lang_get( 'private' ); ?></label> <?php } else { echo get_enum_element( 'view_state', $t_default_bugnote_view_status ); } ?> </td> </tr> <?php } } ?> <tr class="spacer"></tr> <?php bug_group_action_print_bug_list( $f_bug_arr ); ?> <tr class="spacer"></tr> </tbody> </table> </div> </div> <div class="widget-toolbox padding-8 clearfix"> <input type="submit" class="btn btn-primary btn-white btn-round" value="<?php echo $t_button_title ?>" /> </div> </div> </div> </form> </div> </div> <?php bug_group_action_print_bottom();