0byt3m1n1
Path:
/
data
/
applications
/
aps
/
mantis
/
1.1.1-6
/
standard
/
htdocs
/
[
Home
]
File: roadmap_page.php
<?php # Mantis - a php based bugtracking system # Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org # Copyright (C) 2002 - 2007 Mantis Team - mantisbt-dev@lists.sourceforge.net # Mantis 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. # # Mantis 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 Mantis. If not, see <http://www.gnu.org/licenses/>. # -------------------------------------------------------- # $Id: roadmap_page.php,v 1.8.2.1 2007-10-13 22:34:29 giallu Exp $ # -------------------------------------------------------- require_once( 'core.php' ); $t_core_path = config_get( 'core_path' ); require_once( $t_core_path.'bug_api.php' ); # Print header for the specified project version. function print_version_header( $p_version_row ) { $t_project_id = $p_version_row['project_id']; $t_version_name = $p_version_row['version']; $t_project_name = project_get_field( $t_project_id, 'name' ); $t_release_title = string_display( $t_project_name ) . ' - ' . string_display( $t_version_name ); echo '<tt>'; echo '<br />', $t_release_title, '<br />'; echo str_pad( '', strlen( $t_release_title ), '=' ), '<br />'; } # print project header function print_project_header( $p_project_name ) { echo '<br /><span class="pagetitle">', string_display( $p_project_name ), ' - ', lang_get( 'roadmap' ), '</span><br />'; } $t_user_id = auth_get_current_user_id(); $f_project_id = gpc_get_int( 'project_id', helper_get_current_project() ); if ( ALL_PROJECTS == $f_project_id ) { $t_topprojects = $t_project_ids = user_get_accessible_projects( $t_user_id ); foreach ( $t_topprojects as $t_project ) { $t_project_ids = array_merge( $t_project_ids, user_get_all_accessible_subprojects( $t_user_id, $t_project ) ); } $t_project_ids_to_check = array_unique( $t_project_ids ); $t_project_ids = array(); foreach ( $t_project_ids_to_check as $t_project_id ) { $t_roadmap_view_access_level = config_get( 'roadmap_view_threshold', null, null, $t_project_id ); if ( access_has_project_level( $t_roadmap_view_access_level, $t_project_id ) ) { $t_project_ids[] = $t_project_id; } } } else { access_ensure_project_level( config_get( 'roadmap_view_threshold' ), $f_project_id ); $t_project_ids = user_get_all_accessible_subprojects( $t_user_id, $f_project_id ); array_unshift( $t_project_ids, $f_project_id ); } html_page_top1( lang_get( 'roadmap' ) ); // title html_page_top2(); $t_project_index = 0; foreach( $t_project_ids as $t_project_id ) { $c_project_id = db_prepare_int( $t_project_id ); $t_project_name = project_get_field( $t_project_id, 'name' ); $t_can_view_private = access_has_project_level( config_get( 'private_bug_threshold' ), $t_project_id ); $t_limit_reporters = config_get( 'limit_reporters' ); $t_user_access_level_is_reporter = ( REPORTER == access_get_project_level( $t_project_id ) ); $t_resolved = config_get( 'bug_resolved_status_threshold' ); $t_bug_table = config_get( 'mantis_bug_table' ); $t_relation_table = config_get( 'mantis_bug_relationship_table' ); $t_version_rows = array_reverse( version_get_all_rows( $t_project_id ) ); $t_project_header_printed = false; foreach( $t_version_rows as $t_version_row ) { if ( $t_version_row['released'] == 1 ) { continue; } $t_issues_planned = 0; $t_issues_resolved = 0; $t_issues_counted = array(); $t_version_header_printed = false; $t_version = $t_version_row['version']; $c_version = db_prepare_string( $t_version ); $query = "SELECT $t_bug_table.*, $t_relation_table.source_bug_id FROM $t_bug_table LEFT JOIN $t_relation_table ON $t_bug_table.id=$t_relation_table.destination_bug_id AND $t_relation_table.relationship_type=2 WHERE project_id='$c_project_id' AND target_version='$c_version' ORDER BY status ASC, last_updated DESC"; $t_description = $t_version_row['description']; $t_first_entry = true; $t_result = db_query( $query ); $t_issue_ids = array(); $t_issue_parents = array(); while ( $t_row = db_fetch_array( $t_result ) ) { # hide private bugs if user doesn't have access to view them. if ( !$t_can_view_private && ( $t_row['view_state'] == VS_PRIVATE ) ) { continue; } bug_cache_database_result( $t_row ); # check limit_Reporter (Issue #4770) # reporters can view just issues they reported if ( ON === $t_limit_reporters && $t_user_access_level_is_reporter && !bug_is_user_reporter( $t_row['id'], $t_user_id )) { continue; } $t_issue_id = $t_row['id']; $t_issue_parent = $t_row['source_bug_id']; if ( !helper_call_custom_function( 'roadmap_include_issue', array( $t_issue_id ) ) ) { continue; } if ( !isset( $t_issues_counted[$t_issue_id] ) ) { $t_issues_planned++; if ( bug_is_resolved( $t_issue_id ) ) { $t_issues_resolved++; } $t_issues_counted[$t_issue_id] = true; } $t_issue_ids[] = $t_issue_id; $t_issue_parents[] = $t_issue_parent; } $t_progress = $t_issues_planned > 0 ? ( (integer) ( $t_issues_resolved * 100 / $t_issues_planned ) ) : 0; if ( $t_issues_planned > 0 ) { $t_progress = (integer) ( $t_issues_resolved * 100 / $t_issues_planned ); if ( !$t_project_header_printed ) { print_project_header( $t_project_name ); $t_project_header_printed = true; } if ( !$t_version_header_printed ) { print_version_header( $t_version_row ); $t_version_header_printed = true; } if ( !is_blank( $t_description ) ) { echo string_display( '<br />' .$t_description . '<br />' ); } // show progress bar echo '<div class="progress400">'; echo ' <span class="bar" style="width: ' . $t_progress . '%;">' . $t_progress . '%</span>'; echo '</div>'; } $t_issue_set_ids = array(); $t_issue_set_levels = array(); $k = 0; while ( 0 < count( $t_issue_ids ) ) { $t_issue_id = $t_issue_ids[$k]; $t_issue_parent = $t_issue_parents[$k]; if ( !in_array( $t_issue_parent, $t_issue_ids ) ) { $l = array_search( $t_issue_parent, $t_issue_set_ids ); if ( $l !== false ) { for ( $m = $l+1; $m < count( $t_issue_set_ids ) && $t_issue_set_levels[$m] > $t_issue_set_levels[$l]; $m++ ) { #do nothing } $t_issue_set_ids_end = array_splice( $t_issue_set_ids, $m ); $t_issue_set_levels_end = array_splice( $t_issue_set_levels, $m ); $t_issue_set_ids[] = $t_issue_id; $t_issue_set_levels[] = $t_issue_set_levels[$l] + 1; $t_issue_set_ids = array_merge( $t_issue_set_ids, $t_issue_set_ids_end ); $t_issue_set_levels = array_merge( $t_issue_set_levels, $t_issue_set_levels_end ); } else { $t_issue_set_ids[] = $t_issue_id; $t_issue_set_levels[] = 0; } array_splice( $t_issue_ids, $k, 1 ); array_splice( $t_issue_parents, $k, 1 ); } else { $k++; } if ( count( $t_issue_ids ) <= $k ) { $k = 0; } } for ( $j = 0; $j < count( $t_issue_set_ids ); $j++ ) { $t_issue_set_id = $t_issue_set_ids[$j]; $t_issue_set_level = $t_issue_set_levels[$j]; helper_call_custom_function( 'roadmap_print_issue', array( $t_issue_set_id, $t_issue_set_level ) ); } if ( $t_issues_planned > 0 ) { echo '<br />'; echo sprintf( lang_get( 'resolved_progress' ), $t_issues_resolved, $t_issues_planned, $t_progress ); echo '<br /></tt>'; } } $t_project_index++; } html_page_bottom1( __FILE__ ); ?>