r892: Adding and implementing ResolutionAPI
[bugdar.git] / includes / api_resolution.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar [#]version[#]
5 || # Copyright ©2002-[#]year[#] Iris Studios, Inc.
6 || #
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.
10 || #
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
14 || # more details.
15 || #
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 \*=====================================================================*/
21
22 $GLOBALS['isso:callback']->load('api', null);
23
24 /**
25 * API: Resolution
26 *
27 * @author Iris Studios, Inc.
28 * @copyright Copyright ©2002 - [#]year[#], Iris Studios, Inc.
29 * @version $Revision$
30 * @package Bugdar
31 *
32 */
33 class ResolutionAPI extends API
34 {
35 /**
36 * Fields
37 * @var array
38 * @access private
39 */
40 var $fields = array(
41 'resolutionid' => array(TYPE_UINT, REQ_AUTO, 'verify_nozero'),
42 'resolution' => array(TYPE_STR, REQ_YES, 'verify_noempty'),
43 'displayorder' => array(TYPE_INT, REQ_NO)
44 );
45
46 /**
47 * Database table
48 * @var string
49 * @access private
50 */
51 var $table = 'resolution';
52
53 /**
54 * Table prefix
55 * @var string
56 * @access private
57 */
58 var $prefix = TABLE_PREFIX;
59 }
60
61 /*=====================================================================*\
62 || ###################################################################
63 || # $HeadURL$
64 || # $Id$
65 || ###################################################################
66 \*=====================================================================*/
67 ?>