]>
src.bluestatic.org Git - bugdar.git/blob - includes/api_resolution.php
2 /*=====================================================================*\
3 || ###################################################################
5 || # Copyright ©2002-2007 Blue Static
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 2 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 $GLOBALS['isso:callback']->load('api', null);
24 require_once('./includes/functions_datastore.php');
30 * @copyright Copyright ©2002 - 2007, Blue Static
35 class ResolutionAPI
extends API
43 'resolutionid' => array(TYPE_UINT
, REQ_AUTO
, 'verify_nozero'),
44 'resolution' => array(TYPE_STR
, REQ_YES
, 'verify_noempty'),
45 'displayorder' => array(TYPE_INT
, REQ_NO
)
53 var $table = 'resolution';
60 var $prefix = TABLE_PREFIX
;
62 // ###################################################################
68 function post_insert()
73 // ###################################################################
79 function post_update()
84 // ###################################################################
90 function post_delete()
93 $this->registry
->db
->query("UPDATE " . TABLE_PREFIX
. "bug SET resolution = " . $this->registry
->clean(bugdar
::$options['defaultresolve'], TYPE_UINT
) . " WHERE resolution = " . $this->values
['resolutionid']);
97 /*=====================================================================*\
98 || ###################################################################
101 || ###################################################################
102 \*=====================================================================*/