Updated attachment.php to work, sans NotificationCenter
[bugdar.git] / includes / api_attachment.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar
5 || # Copyright ©2002-2007 Blue Static
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 2 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 require_once ISSO . '/Api.php';
23
24 /**
25 * API: Attachment
26 *
27 * @author Blue Static
28 * @copyright Copyright ©2002 - 2007, Blue Static
29 * @version $Revision$
30 * @package Bugdar
31 *
32 */
33 class AttachmentAPI extends BSApi
34 {
35 /**
36 * Fields
37 * @var array
38 * @access private
39 */
40 var $fields = array(
41 'attachmentid' => array(TYPE_UINT, REQ_AUTO, 'verify_nozero'),
42 'bugid' => array(TYPE_UINT, REQ_YES, null, array('includes/api_bug.php', 'BugAPI')),
43 'filename' => array(TYPE_STR, REQ_YES, 'verify_noempty'),
44 'mimetype' => array(TYPE_STR, REQ_YES),
45 'filesize' => array(TYPE_INT, REQ_NO),
46 'attachment' => array(TYPE_BIN, REQ_YES),
47 'description' => array(TYPE_STR, REQ_YES),
48 'dateline' => array(TYPE_UINT, REQ_SET),
49 'userid' => array(TYPE_UINT, REQ_YES, null, array('includes/api_user.php', 'UserAPI')),
50 'obsolete' => array(TYPE_BOOL, REQ_NO)
51 );
52
53 /**
54 * Database table
55 * @var string
56 * @access private
57 */
58 var $table = 'attachment';
59
60 /**
61 * Table prefix
62 * @var string
63 * @access private
64 */
65 var $prefix = TABLE_PREFIX;
66
67 // ###################################################################
68 /**
69 * Set field: dateline
70 *
71 * @access private
72 */
73 function set_dateline()
74 {
75 $this->set('dateline', time());
76 }
77 }
78
79 /*=====================================================================*\
80 || ###################################################################
81 || # $HeadURL$
82 || # $Id$
83 || ###################################################################
84 \*=====================================================================*/
85 ?>