]>
src.bluestatic.org Git - bugdar.git/blob - admin/priority.php
2 /*=====================================================================*\
3 || ################################################################### ||
4 || # BugStrike [#]version[#]
5 || # --------------------------------------------------------------- # ||
6 || # Copyright ©2002-[#]year[#] by Iris Studios, Inc. All Rights Reserved. # ||
7 || # This file may not be reproduced in any way without permission. # ||
8 || # --------------------------------------------------------------- # ||
9 || # User License Agreement at http://www.iris-studios.com/license/ # ||
10 || ################################################################### ||
11 \*=====================================================================*/
13 require_once ( './global.php' );
14 require_once ( './includes/functions_datastore.php' );
16 if (! can_perform ( 'canadminfields' ))
21 // ###################################################################
23 if ( empty ( $_REQUEST [ 'do' ]))
25 $_REQUEST [ 'do' ] = 'modify' ;
28 // ###################################################################
30 if ( $_REQUEST [ 'do' ] == 'kill' )
32 $db- > query ( "DELETE FROM " . TABLE_PREFIX
. "priority WHERE priorityid = " . intval ( $bugsys- > in
[ 'priorityid' ]));
34 $admin- > redirect ( 'priority.php?do=modify' );
37 // ###################################################################
39 if ( $_REQUEST [ 'do' ] == 'delete' )
41 $admin- > page_confirm ( $lang- > string ( 'Are you sure you want to delete this priority? Doing so will revert all bugs to the default priority (which is set in the options panel)?' ), 'priority.php?do=kill&priorityid=' . intval ( $bugsys- > in
[ 'priorityid' ]));
44 // ###################################################################
46 if ( $_POST [ 'do' ] == 'insert' )
48 sanitize ( array ( 'priority' => STR
, 'displayorder' => INT ));
49 $db- > query ( "INSERT INTO " . TABLE_PREFIX
. "priority (priority, displayorder) VALUES ('" . $bugsys- > in
[ 'priority' ] . "'," . intval ( $bugsys- > in
[ 'displayorder' ]) . ")" );
51 $admin- > redirect ( 'priority.php?do=modify' );
54 // ###################################################################
56 if ( $_REQUEST [ 'do' ] == 'add' )
58 $admin- > page_start ( $lang- > string ( 'Add New Priority' ));
60 $admin- > form_start ( 'priority.php' , 'insert' );
61 $admin- > table_start ();
62 $admin- > table_head ( $lang- > string ( 'New Priority' ));
63 $admin- > row_input ( $lang- > string ( 'Priority Title<div><dfn>The title of this priority flag (eg: `Slated for Development` or `Address Now`)</dfn></div>' ), 'priority' );
64 $admin- > row_input ( $lang- > string ( 'Display Order<div><dfn>The order in which the priorities are displayed. The higher the number, the lower down in the list it is.</dfn></div>' ), 'displayorder' );
72 // ###################################################################
74 if ( $_POST [ 'do' ] == 'update' )
76 $db- > query ( "UPDATE " . TABLE_PREFIX
. "priority SET priority = '" . $bugsys- > in
[ 'priority' ] . "', displayorder = " . intval ( $bugsys- > in
[ 'displayorder' ]) . " WHERE priorityid = " . intval ( $bugsys- > in
[ 'priorityid' ]));
78 $admin- > redirect ( 'priority.php?do=modify' );
81 // ###################################################################
83 if ( $_REQUEST [ 'do' ] == 'edit' )
85 $priority = $db- > query_first ( "SELECT * FROM " . TABLE_PREFIX
. "priority WHERE priorityid = " . intval ( $bugsys- > in
[ 'priorityid' ]));
86 if (! is_array ( $priority ))
88 $admin- > error ( $lang- > getkex ( 'error_invalid_id' ));
91 $admin- > page_start ( $lang- > string ( 'Edit Priority' ));
93 $admin- > form_start ( 'priority.php' , 'update' );
94 $admin- > form_hidden_field ( 'priorityid' , $priority [ 'priorityid' ]);
95 $admin- > table_start ();
96 $admin- > table_head ( sprintf ( $lang- > string ( 'Edit Priority `%1 $s ` (id: %2 $s )' , $priority [ 'priority' ], $priority [ 'priorityid' ])));
97 $admin- > row_input ( $lang- > string ( 'Priority Title<div><dfn>The title of this priority flag (eg: `Slated for Development` or `Address Now`)</dfn></div>' ), 'priority' , $priority [ 'priority' ]);
98 $admin- > row_input ( $lang- > string ( 'Display Order<div><dfn>The order in which the priorities are displayed. The higher the number, the lower down in the list it is.</dfn></div>' ), 'displayorder' , $priority [ 'displayorder' ]);
106 // ###################################################################
108 if ( $_REQUEST [ 'do' ] == 'modify' )
110 $admin- > page_start ( $lang- > string ( 'Priority Manager' ));
112 $priorities = $db- > query ( "SELECT * FROM " . TABLE_PREFIX
. "priority ORDER BY displayorder" );
114 $admin- > form_start ( 'priority.php' , 'null' );
115 $admin- > table_start ();
116 $admin- > table_head ( $lang- > string ( 'Priority Manager' ));
118 while ( $priority = $db- > fetch_array ( $priorities ))
120 $admin- > row_text ( " $priority [displayorder]: <a href= \" priority.php?do=edit&priorityid= $priority [priorityid] \" > $priority [priority]</a>" , "(priorityid: $priority [priorityid]) <a href= \" priority.php?do=edit&priorityid= $priority [priorityid] \" >[" . $lang- > string ( 'Edit' ) . "]</a> <a href= \" priority.php?do=delete&priorityid= $priority [priorityid] \" >[" . $lang- > string ( 'Delete' ) . "]</a>" );
122 $db- > free_result ( $priorityes );
124 $admin- > row_span ( '<a href="priority.php?do=add">[' . $lang- > string ( 'Add New Priority' ) . ']</a>' , 'tfoot' , 'center' , 3 );
131 /*=====================================================================*\
132 || ###################################################################
135 || ###################################################################
136 \*=====================================================================*/