コード例 #1
0
require_once 'core.php';
$t_core_path = config_get('core_path');
require_once $t_core_path . 'graph_api.php';
access_ensure_project_level(config_get('view_summary_threshold'));
html_page_top1();
html_page_top2();
print_summary_menu('summary_page.php');
echo '<br />';
print_menu_graph();
$t_width = config_get('graph_window_width');
$t_graph_width = (int) (($t_width - 50) * 0.6);
# gather the data for the graphs
$t_user_id = auth_get_current_user_id();
token_delete_by_type_owner(TOKEN_GRAPH, $t_user_id);
$t_metrics = enum_bug_group(lang_get('priority_enum_string'), 'priority');
$t_token = token_add(serialize($t_metrics), TOKEN_GRAPH, $t_user_id);
?>

<br />
<table class="width100" cellspacing="1">
<tr>
	<td class="form-title">
		<?php 
echo lang_get('graph_imp_priority_title');
?>
	</td>
</tr>
<tr valign="top">
	<td>
		<center><img src="summary_graph_bypriority.php?width=<?php 
echo $t_graph_width;
コード例 #2
0
        break;
        # does nothing. catch all case
    # does nothing. catch all case
    default:
        break;
}
$tc_setting_arr = filter_ensure_valid_filter($t_setting_arr);
$t_settings_serialized = serialize($tc_setting_arr);
$t_settings_string = $t_cookie_version . '#' . $t_settings_serialized;
# If only using a temporary filter, don't store it in the database
if (!$f_temp_filter) {
    # Store the filter string in the database: its the current filter, so some values won't change
    $t_project_id = helper_get_current_project();
    $t_project_id = $t_project_id * -1;
    $t_row_id = filter_db_set_for_current_user($t_project_id, false, '', $t_settings_string);
    # set cookie values
    gpc_set_cookie(config_get('view_all_cookie'), $t_row_id, time() + config_get('cookie_time_length'), config_get('cookie_path'));
}
# redirect to print_all or view_all page
if ($f_print) {
    $t_redirect_url = 'print_all_bug_page.php';
} else {
    $t_redirect_url = 'view_all_bug_page.php';
}
if ($f_temp_filter) {
    $t_token_id = token_add($t_settings_serialized, TOKEN_FILTER);
    $t_redirect_url = $t_redirect_url . '?filter=' . $t_token_id;
    html_meta_redirect($t_redirect_url, 0);
} else {
    print_header_redirect($t_redirect_url);
}