]>
src.bluestatic.org Git - bugdar.git/blob - admin/severity.php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar [#]version[#]
5 || # Copyright ©2002-[#]year[#] Iris Studios, Inc.
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version [#]gpl[#] of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
22 require_once ( './global.php' );
23 require_once ( './includes/api_severity.php' );
25 if (! can_perform ( 'canadminfields' ))
30 // ###################################################################
32 if ( empty ( $_REQUEST [ 'do' ]))
34 $_REQUEST [ 'do' ] = 'modify' ;
37 // ###################################################################
39 if ( $_REQUEST [ 'do' ] == 'kill' )
41 $severity = new SeverityAPI ( $bugsys );
42 $severity- > set ( 'severityid' , $bugsys- > in
[ 'severityid' ]);
43 $severity- > set_condition ();
46 $admin- > redirect ( 'severity.php?do=modify' );
49 // ###################################################################
51 if ( $_REQUEST [ 'do' ] == 'delete' )
53 $admin- > page_confirm ( $lang- > string ( 'Are you sure you want to delete this severity? Doing so will revert all bugs to the default severity (which is set in the options panel)?' ), 'severity.php?do=kill&severityid=' . $bugsys- > input_clean ( 'severityid' , TYPE_UINT
));
56 // ###################################################################
58 if ( $_POST [ 'do' ] == 'insert' )
60 $severity = new SeverityAPI ( $bugsys );
61 $severity- > set ( 'severity' , $bugsys- > in
[ 'severity' ]);
62 $severity- > set ( 'displayorder' , $bugsys- > in
[ 'displayorder' ]);
65 $admin- > redirect ( 'severity.php?do=modify' );
68 // ###################################################################
70 if ( $_REQUEST [ 'do' ] == 'add' )
72 $admin- > page_start ( $lang- > string ( 'Add New Severity' ));
74 $admin- > form_start ( 'severity.php' , 'insert' );
75 $admin- > table_start ();
76 $admin- > table_head ( $lang- > string ( 'New Severity' ), 2 , 'standard_bug_fields' );
77 $admin- > row_input ( $lang- > string ( 'Severity Title<div><dfn>The title of this severity flag (eg: `Major` or `Critical`)</dfn></div>' ), 'severity' );
78 $admin- > row_input ( $lang- > string ( 'Display Order<div><dfn>The order in which the severities are displayed. The higher the number, the lower down in the list it is.</dfn></div>' ), 'displayorder' );
86 // ###################################################################
88 if ( $_POST [ 'do' ] == 'update' )
90 $severity = new SeverityAPI ( $bugsys );
91 $severity- > set ( 'severityid' , $bugsys- > in
[ 'severityid' ]);
92 $severity- > set_condition ();
93 $severity- > set ( 'severity' , $bugsys- > in
[ 'severity' ]);
94 $severity- > set ( 'displayorder' , $bugsys- > in
[ 'displayorder' ]);
97 $admin- > redirect ( 'severity.php?do=modify' );
100 // ###################################################################
102 if ( $_REQUEST [ 'do' ] == 'edit' )
104 $severity = new SeverityAPI ( $bugsys );
105 $severity- > set ( 'severityid' , $bugsys- > in
[ 'severityid' ]);
106 $severity- > set_condition ();
109 $admin- > page_start ( $lang- > string ( 'Edit Severity' ));
111 $admin- > form_start ( 'severity.php' , 'update' );
112 $admin- > form_hidden_field ( 'severityid' , $severity- > objdata
[ 'severityid' ]);
113 $admin- > table_start ();
114 $admin- > table_head ( sprintf ( $lang- > string ( 'Edit Severity - %1 $s (id: %2 $s )' ), $severity- > objdata
[ 'severity' ], $severity- > objdata
[ 'severityid' ]), 2 , 'standard_bug_fields' );
115 $admin- > row_input ( $lang- > string ( 'Severity Title<div><dfn>The title of this severity flag (eg: `Major` or `Critical`)</dfn></div>' ), 'severity' , $severity- > objdata
[ 'severity' ]);
116 $admin- > row_input ( $lang- > string ( 'Display Order<div><dfn>The order in which the severities are displayed. The higher the number, the lower down in the list it is.</dfn></div>' ), 'displayorder' , $severity- > objdata
[ 'displayorder' ]);
117 $admin- > row_submit ();
124 // ###################################################################
126 if ( $_REQUEST [ 'do' ] == 'modify' )
128 $admin- > page_start ( $lang- > string ( 'Severity Manager' ));
130 $severities = $db- > query ( "SELECT * FROM " . TABLE_PREFIX
. "severity ORDER BY displayorder" );
132 $admin- > form_start ( 'severity.php' , 'null' );
133 $admin- > table_start ();
134 $admin- > table_head ( $lang- > string ( 'Severity Manager' ), 2 , 'standard_bug_fields' );
136 while ( $severity = $db- > fetch_array ( $severities ))
138 $admin- > row_text ( " $severity [displayorder]: <a href= \" severity.php?do=edit&severityid= $severity [severityid] \" > $severity [severity]</a>" , "(severityid: $severity [severityid]) <a href= \" severity.php?do=edit&severityid= $severity [severityid] \" >[" . $lang- > string ( 'Edit' ) . "]</a> <a href= \" severity.php?do=delete&severityid= $severity [severityid] \" >[" . $lang- > string ( 'Delete' ) . "]</a>" );
140 $db- > free_result ( $severityes );
142 $admin- > row_span ( '<a href="severity.php?do=add">[' . $lang- > string ( 'Add New Severity' ) . ']</a>' , 'tfoot' , 'center' , 3 );
149 /*=====================================================================*\
150 || ###################################################################
153 || ###################################################################
154 \*=====================================================================*/