本文整理匯總了PHP中print_summary_menu函數的典型用法代碼示例。如果您正苦於以下問題:PHP print_summary_menu函數的具體用法?PHP print_summary_menu怎麽用?PHP print_summary_menu使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了print_summary_menu函數的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: access_ensure_project_level
/**
* This page displays "improved" charts on priorities : bars, 3Dpie and a mix priorities per status
*
* @package MantisBT
* @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
* @copyright Copyright (C) 2002 - 2013 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 '<br />';
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 = enum_bug_group(lang_get('priority_enum_string'), 'priority');
$t_token = token_set(TOKEN_GRAPH, serialize($t_metrics));
?>
<br />
<table class="width100" cellspacing="1">
<tr>
<td class="form-title">
<?php
echo plugin_lang_get('graph_imp_priority_title');
示例2: access_ensure_project_level
* Modified and "make MantisBT codeguidlines compatible" by Rufinus
* @package MantisBT
* @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
* @copyright Copyright (C) 2002 - 2012 MantisBT Team - mantisbt-dev@lists.sourceforge.net
* @link http://www.mantisbt.org
*/
/**
* MantisBT Core API's
*/
require_once 'core.php';
access_ensure_project_level(config_get('view_summary_threshold'));
html_page_top();
?>
<br />
<?php
print_summary_menu('summary_jpgraph_page.php');
$t_graphs = array('summary_graph_cumulative_bydate', 'summary_graph_bydeveloper', 'summary_graph_byreporter', 'summary_graph_byseverity', 'summary_graph_bystatus', 'summary_graph_byresolution', 'summary_graph_bycategory', 'summary_graph_bypriority');
$t_wide = plugin_config_get('summary_graphs_per_row');
$t_width = plugin_config_get('window_width');
$t_graph_width = (int) (($t_width - 50) / $t_wide);
token_delete(TOKEN_GRAPH);
?>
<br />
<table class="width100" cellspacing="1">
<tr>
<td class="form-title" colspan="2">
<?php
echo lang_get('summary_title');
?>
</td>