Update Copywrite year to be 2019
[civicrm-core.git] / CRM / Core / DAO / EntityFile.php
1 <?php
2
3 /**
4 * @package CRM
5 * @copyright CiviCRM LLC (c) 2004-2019
6 *
7 * Generated from xml/schema/CRM/Core/EntityFile.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
9 * (GenCodeChecksum:febc5ccbfb965f8f4ba8477d4db0e5f3)
10 */
11
12 /**
13 * Database access object for the EntityFile entity.
14 */
15 class CRM_Core_DAO_EntityFile extends CRM_Core_DAO {
16
17 /**
18 * Static instance to hold the table name.
19 *
20 * @var string
21 */
22 static $_tableName = 'civicrm_entity_file';
23
24 /**
25 * Should CiviCRM log any modifications to this table in the civicrm_log table.
26 *
27 * @var bool
28 */
29 static $_log = TRUE;
30
31 /**
32 * primary key
33 *
34 * @var int unsigned
35 */
36 public $id;
37
38 /**
39 * physical tablename for entity being joined to file, e.g. civicrm_contact
40 *
41 * @var string
42 */
43 public $entity_table;
44
45 /**
46 * FK to entity table specified in entity_table column.
47 *
48 * @var int unsigned
49 */
50 public $entity_id;
51
52 /**
53 * FK to civicrm_file
54 *
55 * @var int unsigned
56 */
57 public $file_id;
58
59 /**
60 * Class constructor.
61 */
62 public function __construct() {
63 $this->__table = 'civicrm_entity_file';
64 parent::__construct();
65 }
66
67 /**
68 * Returns foreign keys and entity references.
69 *
70 * @return array
71 * [CRM_Core_Reference_Interface]
72 */
73 public static function getReferenceColumns() {
74 if (!isset(Civi::$statics[__CLASS__]['links'])) {
75 Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
76 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'file_id', 'civicrm_file', 'id');
77 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Dynamic(self::getTableName(), 'entity_id', NULL, 'id', 'entity_table');
78 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
79 }
80 return Civi::$statics[__CLASS__]['links'];
81 }
82
83 /**
84 * Returns all the column names of this table
85 *
86 * @return array
87 */
88 public static function &fields() {
89 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
90 Civi::$statics[__CLASS__]['fields'] = [
91 'id' => [
92 'name' => 'id',
93 'type' => CRM_Utils_Type::T_INT,
94 'title' => ts('Entity File ID'),
95 'description' => ts('primary key'),
96 'required' => TRUE,
97 'table_name' => 'civicrm_entity_file',
98 'entity' => 'EntityFile',
99 'bao' => 'CRM_Core_DAO_EntityFile',
100 'localizable' => 0,
101 ],
102 'entity_table' => [
103 'name' => 'entity_table',
104 'type' => CRM_Utils_Type::T_STRING,
105 'title' => ts('Entity Table'),
106 'description' => ts('physical tablename for entity being joined to file, e.g. civicrm_contact'),
107 'maxlength' => 64,
108 'size' => CRM_Utils_Type::BIG,
109 'table_name' => 'civicrm_entity_file',
110 'entity' => 'EntityFile',
111 'bao' => 'CRM_Core_DAO_EntityFile',
112 'localizable' => 0,
113 ],
114 'entity_id' => [
115 'name' => 'entity_id',
116 'type' => CRM_Utils_Type::T_INT,
117 'title' => ts('Entity ID'),
118 'description' => ts('FK to entity table specified in entity_table column.'),
119 'required' => TRUE,
120 'table_name' => 'civicrm_entity_file',
121 'entity' => 'EntityFile',
122 'bao' => 'CRM_Core_DAO_EntityFile',
123 'localizable' => 0,
124 ],
125 'file_id' => [
126 'name' => 'file_id',
127 'type' => CRM_Utils_Type::T_INT,
128 'title' => ts('File'),
129 'description' => ts('FK to civicrm_file'),
130 'required' => TRUE,
131 'table_name' => 'civicrm_entity_file',
132 'entity' => 'EntityFile',
133 'bao' => 'CRM_Core_DAO_EntityFile',
134 'localizable' => 0,
135 'FKClassName' => 'CRM_Core_DAO_File',
136 ],
137 ];
138 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
139 }
140 return Civi::$statics[__CLASS__]['fields'];
141 }
142
143 /**
144 * Return a mapping from field-name to the corresponding key (as used in fields()).
145 *
146 * @return array
147 * Array(string $name => string $uniqueName).
148 */
149 public static function &fieldKeys() {
150 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
151 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
152 }
153 return Civi::$statics[__CLASS__]['fieldKeys'];
154 }
155
156 /**
157 * Returns the names of this table
158 *
159 * @return string
160 */
161 public static function getTableName() {
162 return self::$_tableName;
163 }
164
165 /**
166 * Returns if this table needs to be logged
167 *
168 * @return bool
169 */
170 public function getLog() {
171 return self::$_log;
172 }
173
174 /**
175 * Returns the list of fields that can be imported
176 *
177 * @param bool $prefix
178 *
179 * @return array
180 */
181 public static function &import($prefix = FALSE) {
182 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'entity_file', $prefix, []);
183 return $r;
184 }
185
186 /**
187 * Returns the list of fields that can be exported
188 *
189 * @param bool $prefix
190 *
191 * @return array
192 */
193 public static function &export($prefix = FALSE) {
194 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'entity_file', $prefix, []);
195 return $r;
196 }
197
198 /**
199 * Returns the list of indices
200 *
201 * @param bool $localize
202 *
203 * @return array
204 */
205 public static function indices($localize = TRUE) {
206 $indices = [
207 'index_entity' => [
208 'name' => 'index_entity',
209 'field' => [
210 0 => 'entity_table',
211 1 => 'entity_id',
212 ],
213 'localizable' => FALSE,
214 'sig' => 'civicrm_entity_file::0::entity_table::entity_id',
215 ],
216 'UI_entity_table_entity_id_file_id' => [
217 'name' => 'UI_entity_table_entity_id_file_id',
218 'field' => [
219 0 => 'entity_table',
220 1 => 'entity_id',
221 2 => 'file_id',
222 ],
223 'localizable' => FALSE,
224 'unique' => TRUE,
225 'sig' => 'civicrm_entity_file::1::entity_table::entity_id::file_id',
226 ],
227 ];
228 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
229 }
230
231 }