0byt3m1n1
Path:
/
data
/
applications
/
aps
/
mantis
/
1.2.7-0
/
standard
/
htdocs
/
[
Home
]
File: bugnote_stats_inc.php
<?php # MantisBT - a php based bugtracking system # MantisBT is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 2 of the License, or # (at your option) any later version. # # MantisBT is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with MantisBT. If not, see <http://www.gnu.org/licenses/>. /** * This include file prints out the bug bugnote_stats * $f_bug_id must already be defined * * @package MantisBT * @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org * @copyright Copyright (C) 2002 - 2011 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ /** * MantisBT BugNote API */ require_once( 'bugnote_api.php' ); if ( ON != config_get('time_tracking_enabled') ) { return; } ?> <a name="bugnotestats" id="bugnotestats" /><br /> <?php collapse_open( 'bugnotestats' ); $t_bugnote_stats_from_def = date( "d:m:Y", $tpl_bug->date_submitted ); $t_bugnote_stats_from_def_ar = explode ( ":", $t_bugnote_stats_from_def ); $t_bugnote_stats_from_def_d = $t_bugnote_stats_from_def_ar[0]; $t_bugnote_stats_from_def_m = $t_bugnote_stats_from_def_ar[1]; $t_bugnote_stats_from_def_y = $t_bugnote_stats_from_def_ar[2]; $t_bugnote_stats_from_d = gpc_get_string( 'start_day', $t_bugnote_stats_from_def_d ); $t_bugnote_stats_from_m = gpc_get_string( 'start_month', $t_bugnote_stats_from_def_m ); $t_bugnote_stats_from_y = gpc_get_string( 'start_year', $t_bugnote_stats_from_def_y ); $t_bugnote_stats_to_def = date( "d:m:Y" ); $t_bugnote_stats_to_def_ar = explode ( ":", $t_bugnote_stats_to_def ); $t_bugnote_stats_to_def_d = $t_bugnote_stats_to_def_ar[0]; $t_bugnote_stats_to_def_m = $t_bugnote_stats_to_def_ar[1]; $t_bugnote_stats_to_def_y = $t_bugnote_stats_to_def_ar[2]; $t_bugnote_stats_to_d = gpc_get_string( 'end_day', $t_bugnote_stats_to_def_d ); $t_bugnote_stats_to_m = gpc_get_string( 'end_month', $t_bugnote_stats_to_def_m ); $t_bugnote_stats_to_y = gpc_get_string( 'end_year', $t_bugnote_stats_to_def_y ); $f_get_bugnote_stats_button = gpc_get_string( 'get_bugnote_stats_button', '' ); # Time tracking date range input form # CSRF protection not required here - form does not result in modifications ?> <form method="post" action="<?php echo form_action_self() . '#bugnotestats' ?>"> <input type="hidden" name="id" value="<?php echo $f_bug_id ?>" /> <table border=0 class="width100" cellspacing="0"> <tr> <td class="form-title" colspan="4"> <?php collapse_icon( 'bugnotestats' ); echo lang_get( 'time_tracking' ) ?> </td> </tr> <tr class="row-2"> <td class="category" width="25%"> <?php $t_filter = array(); $t_filter['do_filter_by_date'] = 'on'; $t_filter['start_day'] = $t_bugnote_stats_from_d; $t_filter['start_month'] = $t_bugnote_stats_from_m; $t_filter['start_year'] = $t_bugnote_stats_from_y; $t_filter['end_day'] = $t_bugnote_stats_to_d; $t_filter['end_month'] = $t_bugnote_stats_to_m; $t_filter['end_year'] = $t_bugnote_stats_to_y; print_filter_do_filter_by_date( true ); ?> </td> </tr> <tr> <td class="center" colspan="2"> <input type="submit" class="button" name="get_bugnote_stats_button" value="<?php echo lang_get( 'time_tracking_get_info_button' ) ?>" /> </td> </tr> </table> </form> <?php # Print time tracking information if requested if ( !is_blank( $f_get_bugnote_stats_button ) ) { # Retrieve time tracking information $t_from = "$t_bugnote_stats_from_y-$t_bugnote_stats_from_m-$t_bugnote_stats_from_d"; $t_to = "$t_bugnote_stats_to_y-$t_bugnote_stats_to_m-$t_bugnote_stats_to_d"; $t_bugnote_stats = bugnote_stats_get_events_array( $f_bug_id, $t_from, $t_to ); # Sort the array by user/real name if ( ON == config_get( 'show_realname' ) ) { $t_name_field = 'realname'; } else { $t_name_field = 'username'; } $t_sort_name = array(); foreach ( $t_bugnote_stats as $t_key => $t_item ) { $t_sort_name[$t_key] = $t_item[$t_name_field]; } array_multisort( $t_sort_name, $t_bugnote_stats ); unset( $t_sort_name ); ?> <br /> <table border=0 class="width100" cellspacing="0"> <tr class="row-category-history"> <td class="small-caption"> <?php echo lang_get( $t_name_field ) ?> </td> <td class="small-caption"> <?php echo lang_get( 'time_tracking' ) ?> </td> </tr> <?php # Loop on all time tracking entries $t_sum_in_minutes = 0; foreach ( $t_bugnote_stats as $t_item ) { $t_sum_in_minutes += $t_item['sum_time_tracking']; $t_item['sum_time_tracking'] = db_minutes_to_hhmm ( $t_item['sum_time_tracking'] ); ?> <tr <?php echo helper_alternate_class() ?>> <td class="small-caption"> <?php echo string_display_line( $t_item[$t_name_field] ) ?> </td> <td class="small-caption"> <?php echo $t_item['sum_time_tracking'] ?> </td> </tr> <?php } # end for loop ?> <tr <?php echo helper_alternate_class() ?>> <td class="small-caption"> <?php echo lang_get( 'total_time' ) ?> </td> <td class="small-caption"> <?php echo db_minutes_to_hhmm ( $t_sum_in_minutes ) ?> </td> </tr> </table> <?php } # end if collapse_closed( 'bugnotestats' ); ?> <table class="width100" cellspacing="0"> <tr> <td class="form-title" colspan="4"> <?php collapse_icon( 'bugnotestats' ); echo lang_get( 'time_tracking' ) ?> </td> </tr> </table> <?php collapse_end( 'bugnotestats' );