Merge pull request #8916 from cividesk/CRM-19256-4.7
[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
437fafcf 33 * (GenCodeChecksum:0eba11703ecd7155339b6527ff0f864e)
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,
116 ) ,
117 'file_type_id' => array(
118 'name' => 'file_type_id',
119 'type' => CRM_Utils_Type::T_INT,
120 'title' => ts('File Type') ,
121 'description' => 'Type of file (e.g. Transcript, Income Tax Return, etc). FK to civicrm_option_value.',
122 ) ,
123 'mime_type' => array(
124 'name' => 'mime_type',
125 'type' => CRM_Utils_Type::T_STRING,
126 'title' => ts('Mime Type') ,
127 'description' => 'mime type of the document',
128 'maxlength' => 255,
129 'size' => CRM_Utils_Type::HUGE,
130 ) ,
131 'uri' => array(
132 'name' => 'uri',
133 'type' => CRM_Utils_Type::T_STRING,
134 'title' => ts('Path') ,
135 'description' => 'uri of the file on disk',
136 'maxlength' => 255,
137 'size' => CRM_Utils_Type::HUGE,
138 ) ,
139 'document' => array(
140 'name' => 'document',
141 'type' => CRM_Utils_Type::T_MEDIUMBLOB,
142 'title' => ts('File Contents') ,
143 'description' => 'contents of the document',
144 ) ,
145 'description' => array(
146 'name' => 'description',
147 'type' => CRM_Utils_Type::T_STRING,
148 'title' => ts('File Description') ,
149 'description' => 'Additional descriptive text regarding this attachment (optional).',
150 'maxlength' => 255,
151 'size' => CRM_Utils_Type::HUGE,
152 ) ,
153 'upload_date' => array(
154 'name' => 'upload_date',
155 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
156 'title' => ts('File Upload Date') ,
157 'description' => 'Date and time that this attachment was uploaded or written to server.',
158 ) ,
159 );
346aaaba 160 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 161 }
346aaaba 162 return Civi::$statics[__CLASS__]['fields'];
e501603b
TO
163 }
164 /**
bd8e0b14 165 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
166 *
167 * @return array
bd8e0b14 168 * Array(string $name => string $uniqueName).
e501603b
TO
169 */
170 static function &fieldKeys() {
bd8e0b14
TO
171 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
172 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 173 }
bd8e0b14 174 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b
TO
175 }
176 /**
177 * Returns the names of this table
178 *
179 * @return string
180 */
181 static function getTableName() {
182 return self::$_tableName;
183 }
184 /**
185 * Returns if this table needs to be logged
186 *
187 * @return boolean
188 */
189 function getLog() {
190 return self::$_log;
191 }
192 /**
193 * Returns the list of fields that can be imported
194 *
195 * @param bool $prefix
196 *
197 * @return array
198 */
199 static function &import($prefix = false) {
60808919
TO
200 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'file', $prefix, array());
201 return $r;
e501603b
TO
202 }
203 /**
204 * Returns the list of fields that can be exported
205 *
206 * @param bool $prefix
207 *
208 * @return array
209 */
210 static function &export($prefix = false) {
60808919
TO
211 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'file', $prefix, array());
212 return $r;
e501603b
TO
213 }
214}