%PDF- %PDF-
Direktori : /www/loslex_o/tracker/ |
Current File : /www/loslex_o/tracker/bug_actiongroup_ext.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/>. /** * Bug action group additional actions * * @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 authentication_api.php * @uses bug_api.php * @uses bug_group_action_api.php * @uses config_api.php * @uses form_api.php * @uses gpc_api.php * @uses helper_api.php * @uses html_api.php * @uses lang_api.php * @uses print_api.php * @uses string_api.php */ require_once( 'core.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( 'form_api.php' ); require_api( 'gpc_api.php' ); require_api( 'helper_api.php' ); require_api( 'html_api.php' ); require_api( 'lang_api.php' ); require_api( 'print_api.php' ); require_api( 'string_api.php' ); auth_ensure_user_authenticated(); helper_begin_long_process(); $f_action = gpc_get_string( 'action' ); $f_bug_arr = gpc_get_int_array( 'bug_arr', array() ); $t_form_name = 'bug_actiongroup_' . $f_action; form_security_validate( $t_form_name ); bug_group_action_init( $f_action ); # group bugs by project $t_projects_bugs = array(); $t_view_bug_threshold = array(); $t_user = auth_get_current_user_id(); foreach( $f_bug_arr as $t_key => $t_bug_id ) { bug_ensure_exists( $t_bug_id ); $t_bug = bug_get( $t_bug_id, true ); # 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, $t_user ) ) { unset( $f_bug_arr[$t_key] ); continue; } if( isset( $t_projects_bugs[$t_bug->project_id] ) ) { $t_projects_bugs[$t_bug->project_id][] = $t_bug_id; } else { $t_projects_bugs[$t_bug->project_id] = array( $t_bug_id ); } } $t_failed_ids = array(); foreach( $t_projects_bugs as $t_project_id => $t_bugs ) { $g_project_override = $t_project_id; foreach( $t_bugs as $t_bug_id ) { $t_fail_reason = bug_group_action_validate( $f_action, $t_bug_id ); if( $t_fail_reason !== null ) { $t_failed_ids[$t_bug_id] = $t_fail_reason; } if( !isset( $t_failed_ids[$t_bug_id] ) ) { $t_fail_reason = bug_group_action_process( $f_action, $t_bug_id ); if( $t_fail_reason !== null ) { $t_failed_ids[$t_bug_id] = $t_fail_reason; } } } } $g_project_override = null; form_security_purge( $t_form_name ); if( count( $t_failed_ids ) > 0 ) { bug_group_action_print_top(); bug_group_action_print_results( $t_failed_ids ); bug_group_action_print_bottom(); } else { print_header_redirect( 'view_all_bug_page.php' ); }