| <?php |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| require_once( 'core.php' ); |
| |
| $t_core_path = config_get( 'core_path' ); |
| |
| require_once( $t_core_path . 'project_api.php' ); |
| require_once( $t_core_path . 'last_visited_api.php' ); |
| require_once( $t_core_path . 'print_api.php' ); |
| |
| $f_project_id = gpc_get_int( 'project_id' ); |
| $t_view_issues_url = "set_project.php?project_id=$f_project_id&ref=view_all_bug_page.php"; |
| |
| if ( $f_project_id == ALL_PROJECTS ) { |
| $t_redirect_url = $t_view_issues_url; |
| print_header_redirect( $t_redirect_url ); |
| exit; |
| } |
| |
| |
| $g_project_override = $f_project_id; |
| |
| $t_changelog_url = "changelog_page.php?project_id=$f_project_id"; |
| $t_roadmap_url = "roadmap_page.php?project_id=$f_project_id"; |
| |
| html_page_top1( project_get_field( $f_project_id, 'name' ) ); |
| |
| html_page_top2(); |
| |
| echo '<h1>', string_display( project_get_field( $f_project_id, 'name' ) ), '</h1>'; |
| |
| echo '<p>'; |
| |
| |
| echo '<a href="', $t_view_issues_url, '">', lang_get( 'view_bugs_link' ), '</a>'; |
| |
| |
| echo ' | <a href="', $t_changelog_url, '">', lang_get( 'changelog_link' ), '</a>'; |
| |
| |
| echo ' | <a href="', $t_roadmap_url, '">', lang_get( 'roadmap_link' ), '</a>'; |
| |
| |
| if ( config_get( 'enable_project_documentation' ) == ON ) { |
| echo ' | <a href="proj_doc_page.php?project_id=', $f_project_id, '">', lang_get( 'docs_link' ), '</a>'; |
| } |
| |
| |
| if ( config_get( 'wiki_enable' ) == ON ) { |
| echo ' | <a href="wiki.php?type=project&id=', $f_project_id, '">', lang_get( 'wiki' ), '</a>'; |
| } |
| |
| |
| if ( access_has_project_level( config_get( 'view_summary_threshold' ), $f_project_id ) ) { |
| echo ' | <a href="summary_page.php?project_id=', $f_project_id, '">', lang_get( 'summary_link' ), '</a>'; |
| } |
| |
| |
| if ( access_has_project_level( config_get( 'manage_project_threshold' ), $f_project_id ) ) { |
| echo ' | <a href="manage_proj_edit_page.php?project_id=', $f_project_id, '">', lang_get( 'manage_link' ), '</a>'; |
| } |
| |
| echo '</p>'; |
| |
| |
| |
| |
| $t_description = project_get_field( $f_project_id, 'description' ); |
| |
| if ( !is_blank( $t_description ) ) { |
| |
| echo '<h2>', lang_get( 'description' ), '</h2>'; |
| |
| echo '<p>', string_display( $t_description ), '</p>'; |
| |
| } |
| |
| $t_access_level_for_dev_team = config_get( 'development_team_threshold' ); |
| $t_users = project_get_all_user_rows( $f_project_id, $t_access_level_for_dev_team ); |
| $t_show_real_names = config_get( 'show_realname' ) == ON; |
| |
| if ( count( $t_users ) > 0 ) { |
| |
| echo '<h2>', lang_get( 'development_team' ), '</h2>'; |
| |
| |
| foreach ( $t_users as $t_user_data ) { |
| |
| $t_user_id = $t_user_data['id']; |
| |
| if ( $t_show_real_names && !is_blank( $t_user_data['realname'] ) ) { |
| |
| $t_user_name = $t_user_data['realname']; |
| |
| } else { |
| |
| $t_user_name = $t_user_data['username']; |
| |
| } |
| |
| echo $t_user_name, ' (', get_enum_element( 'access_levels', $t_user_data['access_level'] ), ')<br />'; |
| } |
| } |
| |
| html_page_bottom1( __FILE__ ); |
| ?> |