r783: Adding initial bug API; still need the methods
[bugdar.git] / includes / api_bug.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: Bug
26 *
27 * @author Iris Studios, Inc.
28 * @copyright Copyright ©2002 - [#]year[#], Iris Studios, Inc.
29 * @version $Revision$
30 * @package Bugdar
31 *
32 */
33 class BugAPI extends API
34 {
35 /**
36 * Database fields
37 * @var array
38 * @access private
39 */
40 var $fields = array(
41 'bugid' => array(TYPE_UINT, REQ_AUTO, 'verify_nozero'),
42 'userid' => array(TYPE_UINT, REQ_NO),
43 'dateline' => array(TYPE_UINT, REQ_SET),
44 'productid' => array(TYPE_UINT, REQ_YES, ':self'),
45 'componentid' => array(TYPE_UINT, REQ_NO, ':self'),
46 'versionid' => array(TYPE_UINT, REQ_YES, ':self'),
47 'summary' => array(TYPE_STR, REQ_YES, 'verify_noempty'),
48 'priority' => array(TYPE_UINT, REQ_NO, ':self'),
49 'severity' => array(TYPE_UINT, REQ_NO, ':self'),
50 'status' => array(TYPE_UINT, REQ_NO, ':self'),
51 'resolution' => array(TYPE_UINT, REQ_NO, ':self'),
52 'assignedto' => array(TYPE_UINT, REQ_NO),
53 'duplicateof' => array(TYPE_STR, REQ_NO),
54 'dependency' => array(TYPE_STR, REQ_NO),
55 'hidden' => array(TYPE_BOOL, REQ_NO),
56 'initialreport' => array(TYPE_UINT, REQ_NO),
57 'lastposttime' => array(TYPE_UINT, REQ_NO),
58 'lastpostby' => array(TYPE_UINT, REQ_NO),
59 'hiddenlastposttime' => array(TYPE_UINT, REQ_NO),
60 'hiddenlastpostby' => array(TYPE_UINT, REQ_NO)
61 );
62
63 /**
64 * Database table
65 * @var string
66 * @access private
67 */
68 var $table = 'bug';
69
70 /**
71 * Table prefix
72 * @var string
73 * @access private
74 */
75 var $prefix = TABLE_PREFIX;
76 }
77
78 /*=====================================================================*\
79 || ###################################################################
80 || # $HeadURL$
81 || # $Id$
82 || ###################################################################
83 \*=====================================================================*/
84 ?>