forked from mantisbt/mantisbt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bugnote_view_inc.php
246 lines (214 loc) · 8.14 KB
/
bugnote_view_inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<?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 list of bugnotes attached to the bug
* $f_bug_id must be set and be set to the bug id
*
* @package MantisBT
* @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - [email protected]
* @copyright Copyright (C) 2002 - 2013 MantisBT Team - [email protected]
* @link http://www.mantisbt.org
*/
/**
* Requires bugnote API
*/
require_once( 'current_user_api.php' );
# grab the user id currently logged in
$t_user_id = auth_get_current_user_id();
#precache access levels
if ( isset( $g_project_override ) ) {
access_cache_matrix_project( $g_project_override );
} else {
access_cache_matrix_project( helper_get_current_project() );
}
# get the bugnote data
$t_bugnote_order = current_user_get_pref( 'bugnote_order' );
$t_bugnotes = bugnote_get_all_visible_bugnotes( $f_bug_id, $t_bugnote_order, 0, $t_user_id );
#precache users
$t_bugnote_users = array();
foreach($t_bugnotes as $t_bugnote) {
$t_bugnote_users[] = $t_bugnote->reporter_id;
}
user_cache_array_rows( $t_bugnote_users );
$num_notes = count( $t_bugnotes );
?>
<?php # Bugnotes BEGIN ?>
<a name="bugnotes" id="bugnotes" /><br />
<?php
collapse_open( 'bugnotes' );
?>
<table class="width100" cellspacing="1">
<tr>
<td class="form-title" colspan="2">
<?php
collapse_icon( 'bugnotes' ); ?>
<?php echo lang_get( 'bug_notes_title' ) ?>
</td>
</tr>
<?php
# no bugnotes
if ( 0 == $num_notes ) {
?>
<tr>
<td class="center" colspan="2">
<?php echo lang_get( 'no_bugnotes_msg' ) ?>
</td>
</tr>
<?php }
event_signal( 'EVENT_VIEW_BUGNOTES_START', array( $f_bug_id, $t_bugnotes ) );
$t_normal_date_format = config_get( 'normal_date_format' );
$t_total_time = 0;
for ( $i=0; $i < $num_notes; $i++ ) {
$t_bugnote = $t_bugnotes[$i];
if ( $t_bugnote->date_submitted != $t_bugnote->last_modified )
$t_bugnote_modified = true;
else
$t_bugnote_modified = false;
$t_bugnote_id_formatted = bugnote_format_id( $t_bugnote->id );
if ( 0 != $t_bugnote->time_tracking ) {
$t_time_tracking_hhmm = db_minutes_to_hhmm( $t_bugnote->time_tracking );
$t_bugnote->note_type = TIME_TRACKING; // for older entries that didn't set the type @@@PLR FIXME
$t_total_time += $t_bugnote->time_tracking;
} else {
$t_time_tracking_hhmm = '';
}
if ( VS_PRIVATE == $t_bugnote->view_state ) {
$t_bugnote_css = 'bugnote-private';
$t_bugnote_note_css = 'bugnote-note-private';
} else {
$t_bugnote_css = 'bugnote-public';
$t_bugnote_note_css = 'bugnote-note-public';
}
?>
<tr class="bugnote" id="c<?php echo $t_bugnote->id ?>">
<td class="<?php echo $t_bugnote_css ?>">
<?php print_avatar( $t_bugnote->reporter_id ); ?>
<span class="small">(<a href="<?php echo string_get_bugnote_view_url($t_bugnote->bug_id, $t_bugnote->id) ?>" title="<?php echo lang_get( 'bugnote_link_title' ) ?>"><?php echo $t_bugnote_id_formatted ?>)</a></span><br />
<?php
echo print_user( $t_bugnote->reporter_id );
?>
<span class="small"><?php
if ( user_exists( $t_bugnote->reporter_id ) ) {
$t_access_level = access_get_project_level( null, (int)$t_bugnote->reporter_id );
// Only display access level when higher than 0 (ANYBODY)
if( $t_access_level > ANYBODY ) {
echo '(', get_enum_element( 'access_levels', $t_access_level ), ')';
}
}
?></span>
<?php if ( VS_PRIVATE == $t_bugnote->view_state ) { ?>
<span class="small">[ <?php echo lang_get( 'private' ) ?> ]</span>
<?php } ?>
<br />
<span class="small"><?php echo date( $t_normal_date_format, $t_bugnote->date_submitted ); ?></span><br />
<?php
if ( $t_bugnote_modified ) {
echo '<span class="small">' . lang_get( 'edited_on') . lang_get( 'word_separator' ) . date( $t_normal_date_format, $t_bugnote->last_modified ) . '</span><br />';
}
?>
<br /><div class="small">
<?php
# bug must be open to be editable
if ( !bug_is_readonly( $f_bug_id ) ) {
$t_can_edit_note = false;
$t_can_delete_note = false;
# admins and the bugnote creator can edit/delete this bugnote
if ( ( access_has_bug_level( config_get( 'manage_project_threshold' ), $f_bug_id ) ) ||
( ( $t_bugnote->reporter_id == $t_user_id ) && ( ON == config_get( 'bugnote_allow_user_edit_delete' ) ) ) ) {
$t_can_edit_note = true;
$t_can_delete_note = true;
}
# users above update_bugnote_threshold should be able to edit this bugnote
if ( $t_can_edit_note || access_has_bug_level( config_get( 'update_bugnote_threshold' ), $f_bug_id ) ) {
print_button( 'bugnote_edit_page.php?bugnote_id='.$t_bugnote->id, lang_get( 'bugnote_edit_link' ) );
}
# users above delete_bugnote_threshold should be able to delete this bugnote
if ( $t_can_delete_note || access_has_bug_level( config_get( 'delete_bugnote_threshold' ), $f_bug_id ) ) {
echo " ";
print_button( 'bugnote_delete.php?bugnote_id='.$t_bugnote->id, lang_get( 'delete_link' ) );
}
# users with access to both update and change view status (or the bugnote author) can change public/private status
if ( $t_can_edit_note || ( access_has_bug_level( config_get( 'update_bugnote_threshold' ), $f_bug_id ) &&
access_has_bug_level( config_get( 'change_view_status_threshold' ), $f_bug_id ) ) ) {
if ( VS_PRIVATE == $t_bugnote->view_state ) {
echo " ";
print_button( 'bugnote_set_view_state.php?private=0&bugnote_id=' . $t_bugnote->id, lang_get( 'make_public' ) );
} else {
echo " ";
print_button( 'bugnote_set_view_state.php?private=1&bugnote_id=' . $t_bugnote->id, lang_get( 'make_private' ) );
}
}
}
?>
</div>
</td>
<td class="<?php echo $t_bugnote_note_css ?>">
<?php
switch ( $t_bugnote->note_type ) {
case REMINDER:
echo '<em>';
# List of recipients; remove surrounding delimiters
$t_recipients = trim( $t_bugnote->note_attr, '|' );
if( empty( $t_recipients ) ) {
echo lang_get( 'reminder_sent_none' );
} else {
# If recipients list's last char is not a delimiter, it was truncated
$t_truncated = ( '|' != utf8_substr( $t_bugnote->note_attr, utf8_strlen( $t_bugnote->note_attr ) - 1 ) );
# Build recipients list for display
$t_to = array();
foreach ( explode( '|', $t_recipients ) as $t_recipient ) {
$t_to[] = prepare_user_name( $t_recipient );
}
echo lang_get( 'reminder_sent_to' ) . ': '
. implode( ', ', $t_to )
. ( $t_truncated ? ' (' . lang_get( 'reminder_list_truncated' ) . ')' : '' );
}
echo '</em><br /><br />';
break;
case TIME_TRACKING:
if ( access_has_bug_level( config_get( 'time_tracking_view_threshold' ), $f_bug_id ) ) {
echo '<b>', lang_get( 'time_tracking_time_spent' ) . ' ' . $t_time_tracking_hhmm, '</b><br /><br />';
}
break;
}
echo string_display_links( $t_bugnote->note );;
?>
</td>
</tr>
<?php event_signal( 'EVENT_VIEW_BUGNOTE', array( $f_bug_id, $t_bugnote->id, VS_PRIVATE == $t_bugnote->view_state ) ); ?>
<tr class="spacer">
<td colspan="2"></td>
</tr>
<?php
} # end for loop
if ( $t_total_time > 0 && access_has_bug_level( config_get( 'time_tracking_view_threshold' ), $f_bug_id ) ) {
echo '<tr><td colspan="2">', sprintf ( lang_get( 'total_time_for_issue' ), db_minutes_to_hhmm( $t_total_time ) ), '</td></tr>';
}
event_signal( 'EVENT_VIEW_BUGNOTES_END', $f_bug_id );
?>
</table>
<?php
collapse_closed( 'bugnotes' );
?>
<table class="width100" cellspacing="1">
<tr>
<td class="form-title" colspan="2">
<?php collapse_icon( 'bugnotes' ); ?>
<?php echo lang_get( 'bug_notes_title' ) ?>
</td>
</tr>
</table>
<?php
collapse_end( 'bugnotes' );