Blame Extras/Mantis/1.1.2-1.fc9/bugnote_view_inc.php

4c79b5
4c79b5
# Mantis - a php based bugtracking system
4c79b5
4c79b5
# Copyright (C) 2000 - 2002  Kenzaburo Ito - kenito@300baud.org
4c79b5
# Copyright (C) 2002 - 2007  Mantis Team   - mantisbt-dev@lists.sourceforge.net
4c79b5
4c79b5
# Mantis is free software: you can redistribute it and/or modify
4c79b5
# it under the terms of the GNU General Public License as published by
4c79b5
# the Free Software Foundation, either version 2 of the License, or
4c79b5
# (at your option) any later version.
4c79b5
#
4c79b5
# Mantis is distributed in the hope that it will be useful,
4c79b5
# but WITHOUT ANY WARRANTY; without even the implied warranty of
4c79b5
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4c79b5
# GNU General Public License for more details.
4c79b5
#
4c79b5
# You should have received a copy of the GNU General Public License
4c79b5
# along with Mantis.  If not, see <http://www.gnu.org/licenses/>.
4c79b5
4c79b5
	#------------------------------
4c79b5
	#   $Revision: 2643 $
4c79b5
	#     $Author: al $    
4c79b5
	#       $Date: 2009-06-18 19:06:27 -0400 (Thu, 18 Jun 2009) $  
4c79b5
	#------------------------------
4c79b5
	# This include file prints out the list of bugnotes attached to the bug
4c79b5
	# $f_bug_id must be set and be set to the bug id
4c79b5
4c79b5
	$t_core_path = config_get( 'core_path' );
4c79b5
4c79b5
	require_once( $t_core_path.'current_user_api.php' );
4c79b5
4c79b5
	# grab the user id currently logged in
4c79b5
	$t_user_id = auth_get_current_user_id();
4c79b5
4c79b5
	if ( !access_has_bug_level( config_get( 'private_bugnote_threshold' ), $f_bug_id ) ) {
4c79b5
		$t_restriction = 'AND ( view_state=' . VS_PUBLIC . ' OR reporter_id = ' . $t_user_id . ')';
4c79b5
	} else {
4c79b5
		$t_restriction = '';
4c79b5
	}
4c79b5
4c79b5
	$t_bugnote_table		= config_get( 'mantis_bugnote_table' );
4c79b5
	$t_bugnote_text_table	= config_get( 'mantis_bugnote_text_table' );
4c79b5
	$t_bugnote_order		= current_user_get_pref( 'bugnote_order' );
4c79b5
4c79b5
	# get the bugnote data
4c79b5
	$query = "SELECT *
4c79b5
			FROM $t_bugnote_table
4c79b5
			WHERE bug_id='$f_bug_id' $t_restriction
4c79b5
			ORDER BY date_submitted $t_bugnote_order, id $t_bugnote_order";
4c79b5
	$result = db_query( $query );
4c79b5
	$num_notes = db_num_rows( $result );
4c79b5
?>
4c79b5
4c79b5
4c79b5

4c79b5
4c79b5
4c79b5
	collapse_open( 'bugnotes' );
4c79b5
?>
4c79b5
4c79b5
4c79b5
	# no bugnotes
4c79b5
	if ( 0 == $num_notes ) {
4c79b5
?>
4c79b5
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
4c79b5
4c79b5
4c79b5
	
4c79b5
4c79b5
		collapse_icon( 'bugnotes' ); ?>
4c79b5
		
4c79b5
	
4c79b5
4c79b5
4c79b5
	$t_normal_date_format = config_get( 'normal_date_format' );
4c79b5
	$t_total_time = 0;
4c79b5
4c79b5
	for ( $i=0; $i < $num_notes; $i++ ) {
4c79b5
		# prefix all bugnote data with v3_
4c79b5
		$row = db_fetch_array( $result );
4c79b5
		extract( $row, EXTR_PREFIX_ALL, 'v3' );
4c79b5
		if ( db_unixtimestamp( $v3_date_submitted ) != db_unixtimestamp( $v3_last_modified ) )
4c79b5
			$t_bugnote_modified = true;
4c79b5
		else
4c79b5
			$t_bugnote_modified = false;
4c79b5
4c79b5
		$v3_date_submitted = date( $t_normal_date_format, ( db_unixtimestamp( $v3_date_submitted ) ) );
4c79b5
		$v3_last_modified = date( $t_normal_date_format, ( db_unixtimestamp( $v3_last_modified ) ) );
4c79b5
4c79b5
		# grab the bugnote text and id and prefix with v3_
4c79b5
		$query = "SELECT note
4c79b5
				FROM $t_bugnote_text_table
4c79b5
				WHERE id='$v3_bugnote_text_id'";
4c79b5
		$result2 = db_query( $query );
4c79b5
		$row = db_fetch_array( $result2 );
4c79b5
4c79b5
		$v3_note = $row['note'];
4c79b5
		$v3_note = string_display_links( $v3_note );
4c79b5
		$t_bugnote_id_formatted = bugnote_format_id( $v3_id );
4c79b5
4c79b5
		if ( 0 != $v3_time_tracking ) {
4c79b5
			$v3_time_tracking_hhmm = db_minutes_to_hhmm( $v3_time_tracking );
4c79b5
			$v3_note_type = TIME_TRACKING;   // for older entries that didn't set the type
4c79b5
			$t_total_time += $v3_time_tracking;
4c79b5
		} else {
4c79b5
			$v3_time_tracking_hhmm = '';
4c79b5
		}
4c79b5
4c79b5
		if ( VS_PRIVATE == $v3_view_state ) {
4c79b5
			$t_bugnote_css		= 'bugnote-private';
4c79b5
			$t_bugnote_note_css	= 'bugnote-note-private';
4c79b5
		} else {
4c79b5
			$t_bugnote_css		= 'bugnote-public';
4c79b5
			$t_bugnote_note_css	= 'bugnote-note-public';
4c79b5
		}
4c79b5
?>
4c79b5
4c79b5
        
4c79b5
		
4c79b5
		()
4c79b5
		
4c79b5
			echo print_user( $v3_reporter_id );
4c79b5
		?>
4c79b5
		
4c79b5
			if ( user_exists( $v3_reporter_id ) ) {
4c79b5
				$t_access_level = access_get_project_level( null, $v3_reporter_id );
4c79b5
				echo '(', get_enum_element( 'access_levels', $t_access_level ), ')';
4c79b5
			} 
4c79b5
		?>
4c79b5
		
4c79b5
		[  ]
4c79b5
		
4c79b5
		
4c79b5
		
4c79b5
		
4c79b5
		if ( $t_bugnote_modified ) {
4c79b5
			echo ''.lang_get( 'edited_on').' '.$v3_last_modified.'
';
4c79b5
		}
4c79b5
		?>
4c79b5
		
4c79b5
		
4c79b5
			# bug must be open to be editable
4c79b5
			if ( !bug_is_readonly( $f_bug_id ) ) {
4c79b5
				$t_can_edit_note = false;
4c79b5
				$t_can_delete_note = false;
4c79b5
4c79b5
				# admins and the bugnote creator can edit/delete this bugnote
4c79b5
				if ( ( access_has_bug_level( config_get( 'manage_project_threshold' ), $f_bug_id ) ) ||
4c79b5
					( ( $v3_reporter_id == $t_user_id ) && ( ON == config_get( 'bugnote_allow_user_edit_delete' ) ) ) ) {
4c79b5
					$t_can_edit_note = true;
4c79b5
					$t_can_delete_note = true;
4c79b5
				}
4c79b5
4c79b5
				# users above update_bugnote_threshold should be able to edit this bugnote
4c79b5
				if ( $t_can_edit_note || access_has_bug_level( config_get( 'update_bugnote_threshold' ), $f_bug_id ) ) {
4c79b5
					print_button( 'bugnote_edit_page.php?bugnote_id='.$v3_id, lang_get( 'bugnote_edit_link' ) );
4c79b5
				}
4c79b5
4c79b5
				# users above delete_bugnote_threshold should be able to delete this bugnote
4c79b5
				if ( $t_can_delete_note || access_has_bug_level( config_get( 'delete_bugnote_threshold' ), $f_bug_id ) ) {
4c79b5
					echo " ";
4c79b5
					print_button( 'bugnote_delete.php?bugnote_id='.$v3_id, lang_get( 'delete_link' ) );
4c79b5
				}
4c79b5
4c79b5
				if ( access_has_bug_level( config_get( 'private_bugnote_threshold' ), $f_bug_id ) &&
4c79b5
					access_has_bug_level( config_get( 'change_view_status_threshold' ), $f_bug_id ) ) {
4c79b5
					if ( VS_PRIVATE == $v3_view_state ) {
4c79b5
						echo " ";
4c79b5
						print_button('bugnote_set_view_state.php?private=0&bugnote_id='.$v3_id, lang_get( 'make_public' ));
4c79b5
					} else {
4c79b5
						echo " ";
4c79b5
						print_button('bugnote_set_view_state.php?private=1&bugnote_id='.$v3_id, lang_get( 'make_private' ));
4c79b5
					}
4c79b5
				}
4c79b5
			}
4c79b5
		?>
4c79b5
		
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
			switch ( $v3_note_type ) {
4c79b5
				case REMINDER:
4c79b5
					echo '' . lang_get( 'reminder_sent_to' ) . ': ';
4c79b5
					$v3_note_attr = substr( $v3_note_attr, 1, strlen( $v3_note_attr ) - 2 );
4c79b5
					$t_to = array();
4c79b5
					foreach ( explode( '|', $v3_note_attr ) as $t_recipient ) {
4c79b5
						$t_to[] = prepare_user_name( $t_recipient );
4c79b5
					}
4c79b5
					echo implode( ', ', $t_to ) . '

';
4c79b5
				case TIME_TRACKING:
4c79b5
					if ( access_has_bug_level( config_get( 'time_tracking_view_threshold' ), $f_bug_id ) ) {
4c79b5
						echo '<big>', $v3_time_tracking_hhmm, '</big>

';
4c79b5
					}
4c79b5
					break;
4c79b5
			}
4c79b5
4c79b5
			echo $v3_note;
4c79b5
		?>
4c79b5
	
4c79b5
4c79b5
4c79b5
	
4c79b5
4c79b5
4c79b5
		} # end for loop
4c79b5
4c79b5
		if ( $t_total_time > 0 && access_has_bug_level( config_get( 'time_tracking_view_threshold' ), $f_bug_id ) ) {
4c79b5
			echo '', sprintf ( lang_get( 'total_time_for_issue' ), db_minutes_to_hhmm( $t_total_time ) ), '';
4c79b5
		}
4c79b5
	} # end else
4c79b5
?>
4c79b5
4c79b5
4c79b5
4c79b5
	collapse_closed( 'bugnotes' );
4c79b5
?>
4c79b5
4c79b5
4c79b5
4c79b5
	
4c79b5
		
4c79b5
		
4c79b5
	
4c79b5
4c79b5
4c79b5
4c79b5
	collapse_end( 'bugnotes' );
4c79b5
?>
4c79b5
4c79b5