. /** * This page displays "improved" charts on categories : categories on bars and 3Dpie * * @package MantisBT * @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org * @copyright Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ /** * MantisBT Core API's */ require_once( 'core.php' ); require_once( 'graph_api.php' ); access_ensure_project_level( config_get( 'view_summary_threshold' ) ); html_page_top(); print_summary_menu( 'summary_page.php' ); echo '
'; print_summary_submenu(); $t_width = plugin_config_get( 'window_width' ); $t_graph_width = (int) ( ( $t_width - 50 ) * 0.6 ); # gather the data for the graphs $t_metrics = create_category_summary(); $t_token = token_set( TOKEN_GRAPH, serialize( $t_metrics ) ); ?>