Blame Identity/Models/Html/Mantis/1.1.2-1.fc9/project_page.php

d6e8d8
d6e8d8
# Mantis - a php based bugtracking system
d6e8d8
d6e8d8
# Copyright (C) 2000 - 2002  Kenzaburo Ito - kenito@300baud.org
d6e8d8
# Copyright (C) 2002 - 2007  Mantis Team   - mantisbt-dev@lists.sourceforge.net
d6e8d8
d6e8d8
# Mantis is free software: you can redistribute it and/or modify
d6e8d8
# it under the terms of the GNU General Public License as published by
d6e8d8
# the Free Software Foundation, either version 2 of the License, or
d6e8d8
# (at your option) any later version.
d6e8d8
#
d6e8d8
# Mantis is distributed in the hope that it will be useful,
d6e8d8
# but WITHOUT ANY WARRANTY; without even the implied warranty of
d6e8d8
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
d6e8d8
# GNU General Public License for more details.
d6e8d8
#
d6e8d8
# You should have received a copy of the GNU General Public License
d6e8d8
# along with Mantis.  If not, see <http://www.gnu.org/licenses/>.
d6e8d8
d6e8d8
	#------------------------------
d6e8d8
	# $Revision: 2643 $
d6e8d8
	#   $Author: al $    
d6e8d8
	#     $Date: 2009-06-18 19:06:27 -0400 (Thu, 18 Jun 2009) $                                              
d6e8d8
	#------------------------------
d6e8d8
d6e8d8
	require_once( 'core.php' );
d6e8d8
d6e8d8
	$t_core_path = config_get( 'core_path' );
d6e8d8
d6e8d8
	require_once( $t_core_path . 'project_api.php' );
d6e8d8
	require_once( $t_core_path . 'last_visited_api.php' );
d6e8d8
	require_once( $t_core_path . 'print_api.php' );
d6e8d8
d6e8d8
	$f_project_id = gpc_get_int( 'project_id' );
d6e8d8
	$t_view_issues_url = "set_project.php?project_id=$f_project_id&ref=view_all_bug_page.php";
d6e8d8
d6e8d8
	if ( $f_project_id == ALL_PROJECTS ) {
d6e8d8
		$t_redirect_url = $t_view_issues_url;
d6e8d8
		print_header_redirect( $t_redirect_url );
d6e8d8
		exit;
d6e8d8
	}
d6e8d8
d6e8d8
	# Override the current page to make sure we get the appropriate project-specific configuration
d6e8d8
	$g_project_override = $f_project_id;
d6e8d8
d6e8d8
	$t_changelog_url = "changelog_page.php?project_id=$f_project_id";
d6e8d8
	$t_roadmap_url = "roadmap_page.php?project_id=$f_project_id";
d6e8d8
d6e8d8
	html_page_top1( project_get_field( $f_project_id, 'name' ) );
d6e8d8
d6e8d8
	html_page_top2();
d6e8d8
d6e8d8
	echo '

', string_display( project_get_field( $f_project_id, 'name' ) ), '

';
d6e8d8
d6e8d8
	echo '

';

d6e8d8
	
d6e8d8
	# View Issues
d6e8d8
	echo '', lang_get( 'view_bugs_link' ), '';
d6e8d8
	
d6e8d8
	# Changelog
d6e8d8
	echo ' | ', lang_get( 'changelog_link' ), '';
d6e8d8
	
d6e8d8
	# Roadmap
d6e8d8
	echo ' | ', lang_get( 'roadmap_link' ), '';
d6e8d8
	
d6e8d8
	# Documentation
d6e8d8
	if ( config_get( 'enable_project_documentation' ) == ON ) {
d6e8d8
		echo ' | ', lang_get( 'docs_link' ), '';
d6e8d8
	}
d6e8d8
d6e8d8
	# Wiki
d6e8d8
	if ( config_get( 'wiki_enable' ) == ON ) {
d6e8d8
		echo ' | ', lang_get( 'wiki' ), '';
d6e8d8
	}
d6e8d8
d6e8d8
	# Summary Page for Project
d6e8d8
	if ( access_has_project_level( config_get( 'view_summary_threshold' ), $f_project_id ) ) {
d6e8d8
		echo ' | ', lang_get( 'summary_link' ), '';
d6e8d8
	}
d6e8d8
d6e8d8
	# Manage Project Page
d6e8d8
	if ( access_has_project_level( config_get( 'manage_project_threshold' ), $f_project_id ) ) {
d6e8d8
		echo ' | ', lang_get( 'manage_link' ), '';
d6e8d8
	}
d6e8d8
d6e8d8
	echo '

';
d6e8d8
	
d6e8d8
	# @@@ Add status, view state, versions, sub-projects, parent projects, and news.
d6e8d8
	# @@@ Schema change: add home page, license,
d6e8d8
d6e8d8
	$t_description = project_get_field( $f_project_id, 'description' );
d6e8d8
d6e8d8
	if ( !is_blank( $t_description ) ) {
d6e8d8
d6e8d8
		echo '

', lang_get( 'description' ), '

';
d6e8d8
d6e8d8
		echo '

', string_display( $t_description ), '

';
d6e8d8
d6e8d8
	}
d6e8d8
d6e8d8
	$t_access_level_for_dev_team = config_get( 'development_team_threshold' );
d6e8d8
	$t_users = project_get_all_user_rows( $f_project_id, $t_access_level_for_dev_team );
d6e8d8
	$t_show_real_names = config_get( 'show_realname' ) == ON;
d6e8d8
d6e8d8
	if ( count( $t_users ) > 0 ) {
d6e8d8
d6e8d8
		echo '

', lang_get( 'development_team' ), '

';
d6e8d8
d6e8d8
		# @@@ sort users in DESC order by access level, then ASC by username/realname.
d6e8d8
		foreach ( $t_users as $t_user_data ) {
d6e8d8
d6e8d8
			$t_user_id = $t_user_data['id'];
d6e8d8
			
d6e8d8
			if ( $t_show_real_names && !is_blank( $t_user_data['realname'] ) ) {
d6e8d8
d6e8d8
				$t_user_name = $t_user_data['realname'];
d6e8d8
d6e8d8
			} else {
d6e8d8
d6e8d8
				$t_user_name = $t_user_data['username'];
d6e8d8
d6e8d8
			}
d6e8d8
d6e8d8
	 		echo $t_user_name, ' (', get_enum_element( 'access_levels', $t_user_data['access_level'] ), ')
';
d6e8d8
	 	}
d6e8d8
 	}
d6e8d8
d6e8d8
	html_page_bottom1( __FILE__ );
d6e8d8
?>