CRM-20312 regenerated DAO with localisation
[civicrm-core.git] / CRM / Core / DAO / File.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27 /**
28 * @package CRM
29 * @copyright CiviCRM LLC (c) 2004-2017
30 *
31 * Generated from xml/schema/CRM/Core/File.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
33 * (GenCodeChecksum:996b2702471b24fb13c740ef104ea1f9)
34 */
35 require_once 'CRM/Core/DAO.php';
36 require_once 'CRM/Utils/Type.php';
37 /**
38 * CRM_Core_DAO_File constructor.
39 */
40 class CRM_Core_DAO_File extends CRM_Core_DAO {
41 /**
42 * Static instance to hold the table name.
43 *
44 * @var string
45 */
46 static $_tableName = 'civicrm_file';
47 /**
48 * Should CiviCRM log any modifications to this table in the civicrm_log table.
49 *
50 * @var boolean
51 */
52 static $_log = true;
53 /**
54 * Unique ID
55 *
56 * @var int unsigned
57 */
58 public $id;
59 /**
60 * Type of file (e.g. Transcript, Income Tax Return, etc). FK to civicrm_option_value.
61 *
62 * @var int unsigned
63 */
64 public $file_type_id;
65 /**
66 * mime type of the document
67 *
68 * @var string
69 */
70 public $mime_type;
71 /**
72 * uri of the file on disk
73 *
74 * @var string
75 */
76 public $uri;
77 /**
78 * contents of the document
79 *
80 * @var mediumblob
81 */
82 public $document;
83 /**
84 * Additional descriptive text regarding this attachment (optional).
85 *
86 * @var string
87 */
88 public $description;
89 /**
90 * Date and time that this attachment was uploaded or written to server.
91 *
92 * @var datetime
93 */
94 public $upload_date;
95 /**
96 * Class constructor.
97 */
98 function __construct() {
99 $this->__table = 'civicrm_file';
100 parent::__construct();
101 }
102 /**
103 * Returns all the column names of this table
104 *
105 * @return array
106 */
107 static function &fields() {
108 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
109 Civi::$statics[__CLASS__]['fields'] = array(
110 'id' => array(
111 'name' => 'id',
112 'type' => CRM_Utils_Type::T_INT,
113 'title' => ts('File ID') ,
114 'description' => 'Unique ID',
115 'required' => true,
116 'table_name' => 'civicrm_file',
117 'entity' => 'File',
118 'bao' => 'CRM_Core_BAO_File',
119 'localizable' => 0,
120 ) ,
121 'file_type_id' => array(
122 'name' => 'file_type_id',
123 'type' => CRM_Utils_Type::T_INT,
124 'title' => ts('File Type') ,
125 'description' => 'Type of file (e.g. Transcript, Income Tax Return, etc). FK to civicrm_option_value.',
126 'table_name' => 'civicrm_file',
127 'entity' => 'File',
128 'bao' => 'CRM_Core_BAO_File',
129 'localizable' => 0,
130 ) ,
131 'mime_type' => array(
132 'name' => 'mime_type',
133 'type' => CRM_Utils_Type::T_STRING,
134 'title' => ts('Mime Type') ,
135 'description' => 'mime type of the document',
136 'maxlength' => 255,
137 'size' => CRM_Utils_Type::HUGE,
138 'table_name' => 'civicrm_file',
139 'entity' => 'File',
140 'bao' => 'CRM_Core_BAO_File',
141 'localizable' => 0,
142 ) ,
143 'uri' => array(
144 'name' => 'uri',
145 'type' => CRM_Utils_Type::T_STRING,
146 'title' => ts('Path') ,
147 'description' => 'uri of the file on disk',
148 'maxlength' => 255,
149 'size' => CRM_Utils_Type::HUGE,
150 'table_name' => 'civicrm_file',
151 'entity' => 'File',
152 'bao' => 'CRM_Core_BAO_File',
153 'localizable' => 0,
154 ) ,
155 'document' => array(
156 'name' => 'document',
157 'type' => CRM_Utils_Type::T_MEDIUMBLOB,
158 'title' => ts('File Contents') ,
159 'description' => 'contents of the document',
160 'table_name' => 'civicrm_file',
161 'entity' => 'File',
162 'bao' => 'CRM_Core_BAO_File',
163 'localizable' => 0,
164 ) ,
165 'description' => array(
166 'name' => 'description',
167 'type' => CRM_Utils_Type::T_STRING,
168 'title' => ts('File Description') ,
169 'description' => 'Additional descriptive text regarding this attachment (optional).',
170 'maxlength' => 255,
171 'size' => CRM_Utils_Type::HUGE,
172 'table_name' => 'civicrm_file',
173 'entity' => 'File',
174 'bao' => 'CRM_Core_BAO_File',
175 'localizable' => 0,
176 ) ,
177 'upload_date' => array(
178 'name' => 'upload_date',
179 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
180 'title' => ts('File Upload Date') ,
181 'description' => 'Date and time that this attachment was uploaded or written to server.',
182 'table_name' => 'civicrm_file',
183 'entity' => 'File',
184 'bao' => 'CRM_Core_BAO_File',
185 'localizable' => 0,
186 ) ,
187 );
188 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
189 }
190 return Civi::$statics[__CLASS__]['fields'];
191 }
192 /**
193 * Return a mapping from field-name to the corresponding key (as used in fields()).
194 *
195 * @return array
196 * Array(string $name => string $uniqueName).
197 */
198 static function &fieldKeys() {
199 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
200 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
201 }
202 return Civi::$statics[__CLASS__]['fieldKeys'];
203 }
204 /**
205 * Returns the names of this table
206 *
207 * @return string
208 */
209 static function getTableName() {
210 return self::$_tableName;
211 }
212 /**
213 * Returns if this table needs to be logged
214 *
215 * @return boolean
216 */
217 function getLog() {
218 return self::$_log;
219 }
220 /**
221 * Returns the list of fields that can be imported
222 *
223 * @param bool $prefix
224 *
225 * @return array
226 */
227 static function &import($prefix = false) {
228 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'file', $prefix, array());
229 return $r;
230 }
231 /**
232 * Returns the list of fields that can be exported
233 *
234 * @param bool $prefix
235 *
236 * @return array
237 */
238 static function &export($prefix = false) {
239 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'file', $prefix, array());
240 return $r;
241 }
242 }