Merge pull request #10549 from jitendrapurohit/CRM-20761
[civicrm-core.git] / CRM / Core / DAO / File.php
CommitLineData
e501603b
TO
1<?php
2/*
3+--------------------------------------------------------------------+
4| CiviCRM version 4.7 |
5+--------------------------------------------------------------------+
0f03f337 6| Copyright CiviCRM LLC (c) 2004-2017 |
e501603b
TO
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
0f03f337 29 * @copyright CiviCRM LLC (c) 2004-2017
e501603b
TO
30 *
31 * Generated from xml/schema/CRM/Core/File.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
022785d8 33 * (GenCodeChecksum:996b2702471b24fb13c740ef104ea1f9)
e501603b
TO
34 */
35require_once 'CRM/Core/DAO.php';
36require_once 'CRM/Utils/Type.php';
f41f0342 37/**
38 * CRM_Core_DAO_File constructor.
39 */
e501603b
TO
40class CRM_Core_DAO_File extends CRM_Core_DAO {
41 /**
f41f0342 42 * Static instance to hold the table name.
e501603b
TO
43 *
44 * @var string
45 */
46 static $_tableName = 'civicrm_file';
e501603b 47 /**
f41f0342 48 * Should CiviCRM log any modifications to this table in the civicrm_log table.
e501603b
TO
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 /**
f41f0342 96 * Class constructor.
e501603b
TO
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() {
346aaaba
TO
108 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
109 Civi::$statics[__CLASS__]['fields'] = array(
e501603b
TO
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,
522a26c9 116 'table_name' => 'civicrm_file',
117 'entity' => 'File',
118 'bao' => 'CRM_Core_BAO_File',
6a7e5e5d 119 'localizable' => 0,
e501603b
TO
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.',
522a26c9 126 'table_name' => 'civicrm_file',
127 'entity' => 'File',
128 'bao' => 'CRM_Core_BAO_File',
6a7e5e5d 129 'localizable' => 0,
e501603b
TO
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,
522a26c9 138 'table_name' => 'civicrm_file',
139 'entity' => 'File',
140 'bao' => 'CRM_Core_BAO_File',
6a7e5e5d 141 'localizable' => 0,
e501603b
TO
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,
522a26c9 150 'table_name' => 'civicrm_file',
151 'entity' => 'File',
152 'bao' => 'CRM_Core_BAO_File',
6a7e5e5d 153 'localizable' => 0,
e501603b
TO
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',
522a26c9 160 'table_name' => 'civicrm_file',
161 'entity' => 'File',
162 'bao' => 'CRM_Core_BAO_File',
6a7e5e5d 163 'localizable' => 0,
e501603b
TO
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,
522a26c9 172 'table_name' => 'civicrm_file',
173 'entity' => 'File',
174 'bao' => 'CRM_Core_BAO_File',
6a7e5e5d 175 'localizable' => 0,
e501603b
TO
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.',
522a26c9 182 'table_name' => 'civicrm_file',
183 'entity' => 'File',
184 'bao' => 'CRM_Core_BAO_File',
6a7e5e5d 185 'localizable' => 0,
e501603b
TO
186 ) ,
187 );
346aaaba 188 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 189 }
346aaaba 190 return Civi::$statics[__CLASS__]['fields'];
e501603b
TO
191 }
192 /**
bd8e0b14 193 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
194 *
195 * @return array
bd8e0b14 196 * Array(string $name => string $uniqueName).
e501603b
TO
197 */
198 static function &fieldKeys() {
bd8e0b14
TO
199 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
200 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 201 }
bd8e0b14 202 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b
TO
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) {
60808919
TO
228 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'file', $prefix, array());
229 return $r;
e501603b
TO
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) {
60808919
TO
239 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'file', $prefix, array());
240 return $r;
e501603b 241 }
e7a6b91a
AS
242 /**
243 * Returns the list of indices
244 */
245 public static function indices($localize = TRUE) {
246 $indices = array();
247 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
248 }
e501603b 249}