-
Notifications
You must be signed in to change notification settings - Fork 0
/
bugnote_add_inc.php
124 lines (117 loc) · 4.08 KB
/
bugnote_add_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
<?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/>.
/**
* @package MantisBT
* @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - [email protected]
* @copyright Copyright (C) 2002 - 2014 MantisBT Team - [email protected]
* @link http://www.mantisbt.org
*/
?>
<?php if ( ( !bug_is_readonly( $f_bug_id ) ) &&
( access_has_bug_level( config_get( 'add_bugnote_threshold' ), $f_bug_id ) ) ) { ?>
<?php # Bugnote Add Form BEGIN ?>
<a name="addbugnote"></a> <br />
<?php
collapse_open( 'bugnote_add' );
?>
<form name="bugnoteadd" method="post" action="bugnote_add.php">
<?php echo form_security_field( 'bugnote_add' ) ?>
<input type="hidden" name="bug_id" value="<?php echo $f_bug_id ?>" />
<table class="width100" cellspacing="1">
<tr>
<td class="form-title" colspan="2">
<?php
collapse_icon( 'bugnote_add' );
echo lang_get( 'add_bugnote_title' ) ?>
</td>
</tr>
<tr class="row-2">
<td class="category" width="25%">
<?php echo lang_get( 'bugnote' ) ?>
</td>
<td width="75%">
<textarea name="bugnote_text" cols="80" rows="10"></textarea>
</td>
</tr>
<?php if ( access_has_bug_level( config_get( 'private_bugnote_threshold' ), $f_bug_id ) ) { ?>
<tr class="row-1">
<td class="category">
<?php echo lang_get( 'view_status' ) ?>
</td>
<td>
<?php
$t_default_bugnote_view_status = config_get( 'default_bugnote_view_status' );
if ( access_has_bug_level( config_get( 'set_view_status_threshold' ), $f_bug_id ) ) {
?>
<input type="checkbox" name="private" <?php check_checked( $t_default_bugnote_view_status, VS_PRIVATE ); ?> />
<?php
echo lang_get( 'private' );
} else {
echo get_enum_element( 'project_view_state', $t_default_bugnote_view_status );
}
?>
</td>
</tr>
<?php } ?>
<?php if ( config_get('time_tracking_enabled') ) { ?>
<?php if ( access_has_bug_level( config_get( 'time_tracking_edit_threshold' ), $f_bug_id ) ) { ?>
<tr <?php echo helper_alternate_class() ?>>
<td class="category">
<?php echo lang_get( 'time_tracking' ) ?> (HH:MM)
</td>
<td>
<?php if ( config_get( 'time_tracking_stopwatch' ) && config_get( 'use_javascript' ) ) { ?>
<script language="javascript">
var time_tracking_stopwatch_lang_start = "<?php echo lang_get( 'time_tracking_stopwatch_start' ) ?>";
var time_tracking_stopwatch_lang_stop = "<?php echo lang_get( 'time_tracking_stopwatch_stop' ) ?>";
</script>
<?php
html_javascript_link( 'time_tracking_stopwatch.js' );
?>
<input type="text" name="time_tracking" size="5" value="00:00" />
<input type="button" name="time_tracking_ssbutton" value="<?php echo lang_get( 'time_tracking_stopwatch_start' ) ?>" onclick="time_tracking_swstartstop()" />
<input type="button" name="time_tracking_reset" value="<?php echo lang_get( 'time_tracking_stopwatch_reset' ) ?>" onclick="time_tracking_swreset()" />
<?php } else { ?>
<input type="text" name="time_tracking" size="5" value="00:00" />
<?php } ?>
</td>
</tr>
<?php } ?>
<?php } ?>
<?php event_signal( 'EVENT_BUGNOTE_ADD_FORM', array( $f_bug_id ) ); ?>
<tr>
<td class="center" colspan="2">
<input type="submit" class="button" value="<?php echo lang_get( 'add_bugnote_button' ) ?>" onclick="this.disabled=1;document.bugnoteadd.submit();" />
</td>
</tr>
</table>
</form>
<?php
collapse_closed( 'bugnote_add' );
?>
<table class="width100" cellspacing="1">
<tr>
<td class="form-title" colspan="2">
<?php collapse_icon( 'bugnote_add' );
echo lang_get( 'add_bugnote_title' ) ?>
</td>
</tr>
</table>
<?php
collapse_end( 'bugnote_add' );
?>
<?php # Bugnote Add Form END ?>
<?php
}