]>
src.bluestatic.org Git - bugdar.git/blob - admin/resolution.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/functions_datastore.php' );
25 if (! can_perform ( 'canadminfields' ))
30 // ###################################################################
32 if ( empty ( $_REQUEST [ 'do' ]))
34 $_REQUEST [ 'do' ] = 'modify' ;
37 // ###################################################################
39 if ( $_REQUEST [ 'do' ] == 'kill' )
41 $db- > query ( "DELETE FROM " . TABLE_PREFIX
. "resolution WHERE resolutionid = " . intval ( $bugsys- > in
[ 'resolutionid' ]));
43 $admin- > redirect ( 'resolution.php?do=modify' );
46 // ###################################################################
48 if ( $_REQUEST [ 'do' ] == 'delete' )
50 $admin- > page_confirm ( $lang- > string ( 'Are you sure you want to delete this resolution? Doing so will revert all bugs to the default resolution (which is set in the options panel)?' ), 'resolution.php?do=kill&resolutionid=' . intval ( $bugsys- > in
[ 'resolutionid' ]));
53 // ###################################################################
55 if ( $_POST [ 'do' ] == 'insert' )
57 $db- > query ( "INSERT INTO " . TABLE_PREFIX
. "resolution (resolution, displayorder) VALUES ('" . $bugsys- > in
[ 'resolution' ] . "', " . intval ( $bugsys- > in
[ 'displayorder' ]) . ")" );
59 $admin- > redirect ( 'resolution.php?do=modify' );
62 // ###################################################################
64 if ( $_REQUEST [ 'do' ] == 'add' )
66 $admin- > page_start ( $lang- > string ( 'Add New Resolution' ));
68 $admin- > form_start ( 'resolution.php' , 'insert' );
69 $admin- > table_start ();
70 $admin- > table_head ( $lang- > string ( 'New Resolution' ), 2 , 'standard_bug_fields' );
71 $admin- > row_input ( $lang- > string ( 'Resolution Title<div><dfn>The title of this resolution flag (eg: `Fixed` or `Bogus`)</dfn></div>' ), 'resolution' );
72 $admin- > row_input ( $lang- > string ( 'Display Order<div><dfn>The order in which the resolutions are displayed. The higher the number, the lower down in the list it is.</dfn></div>' ), 'displayorder' );
80 // ###################################################################
82 if ( $_POST [ 'do' ] == 'update' )
84 $db- > query ( "UPDATE " . TABLE_PREFIX
. "resolution SET resolution = '" . $bugsys- > in
[ 'resolution' ] . "', displayorder = " . intval ( $bugsys- > in
[ 'displayorder' ]) . " WHERE resolutionid = " . intval ( $bugsys- > in
[ 'resolutionid' ]));
86 $admin- > redirect ( 'resolution.php?do=modify' );
89 // ###################################################################
91 if ( $_REQUEST [ 'do' ] == 'edit' )
93 $resolution = $db- > query_first ( "SELECT * FROM " . TABLE_PREFIX
. "resolution WHERE resolutionid = " . intval ( $bugsys- > in
[ 'resolutionid' ]));
94 if (! is_array ( $resolution ))
96 $admin- > error ( $lang- > getlex ( 'error_invalid_id' ));
99 $admin- > page_start ( $lang- > string ( 'Edit Resolution' ), 2 , 'standard_bug_fields' );
101 $admin- > form_start ( 'resolution.php' , 'update' );
102 $admin- > form_hidden_field ( 'resolutionid' , $resolution [ 'resolutionid' ]);
103 $admin- > table_start ();
104 $admin- > table_head ( sprintf ( $lang- > string ( 'Edit Resolution - %1 $s (id: %2 $s )' ), $resolution [ 'resolution' ], $resolution [ 'resolutionid' ]));
105 $admin- > row_input ( $lang- > string ( 'Resolution Title<div><dfn>The title of this resolution flag (eg: `Fixed` or `Bogus`)</dfn></div>' ), 'resolution' , $resolution [ 'resolution' ]);
106 $admin- > row_input ( $lang- > string ( 'Display Order<div><dfn>The order in which the resolutions are displayed. The higher the number, the lower down in the list it is.</dfn></div>' ), 'displayorder' , $resolution [ 'displayorder' ]);
107 $admin- > row_submit ();
114 // ###################################################################
116 if ( $_REQUEST [ 'do' ] == 'modify' )
118 $admin- > page_start ( $lang- > string ( 'Resolution Manager' ));
120 $resolutions = $db- > query ( "SELECT * FROM " . TABLE_PREFIX
. "resolution ORDER BY displayorder" );
122 $admin- > form_start ( 'resolution.php' , 'null' );
123 $admin- > table_start ();
124 $admin- > table_head ( $lang- > string ( 'Resolution Manager' ), 2 , 'standard_bug_fields' );
126 while ( $resolution = $db- > fetch_array ( $resolutions ))
128 $admin- > row_text ( " $resolution [displayorder]: <a href= \" resolution.php?do=edit&resolutionid= $resolution [resolutionid] \" > $resolution [resolution]</a>" , "(resolutionid: $resolution [resolutionid]) <a href= \" resolution.php?do=edit&resolutionid= $resolution [resolutionid] \" >[" . $lang- > string ( 'Edit' ) . "]</a> <a href= \" resolution.php?do=delete&resolutionid= $resolution [resolutionid] \" >[" . $lang- > string ( 'Delete' ) . "]</a>" );
130 $db- > free_result ( $resolutiones );
132 $admin- > row_span ( '<a href="resolution.php?do=add">[' . $lang- > string ( 'Add New Resolution' ) . ']</a>' , 'tfoot' , 'center' , 3 );
139 /*=====================================================================*\
140 || ###################################################################
143 || ###################################################################
144 \*=====================================================================*/