Merge pull request #22235 from kurund/contribution-import
[civicrm-core.git] / CRM / Core / DAO / Tag.php
CommitLineData
e501603b 1<?php
c3fc2621 2
e501603b
TO
3/**
4 * @package CRM
ca5cec67 5 * @copyright CiviCRM LLC https://civicrm.org/licensing
e501603b
TO
6 *
7 * Generated from xml/schema/CRM/Core/Tag.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
28979d65 9 * (GenCodeChecksum:4e8a87bf73d5f2f09dacdd4891ee7305)
e501603b 10 */
c3fc2621 11
f41f0342 12/**
c3fc2621 13 * Database access object for the Tag entity.
f41f0342 14 */
e501603b 15class CRM_Core_DAO_Tag extends CRM_Core_DAO {
929a1c14
CW
16 const EXT = 'civicrm';
17 const TABLE_ADDED = '1.1';
c3fc2621 18
e501603b 19 /**
f41f0342 20 * Static instance to hold the table name.
e501603b
TO
21 *
22 * @var string
23 */
fa45b5b9 24 public static $_tableName = 'civicrm_tag';
c3fc2621 25
449c4e6b
CW
26 /**
27 * Icon associated with this entity.
28 *
29 * @var string
30 */
31 public static $_icon = 'fa-tag';
32
8ab43c93
CW
33 /**
34 * Field to show when displaying a record.
35 *
36 * @var string
37 */
38 public static $_labelField = 'name';
39
e501603b 40 /**
f41f0342 41 * Should CiviCRM log any modifications to this table in the civicrm_log table.
e501603b 42 *
c3fc2621 43 * @var bool
e501603b 44 */
fa45b5b9 45 public static $_log = TRUE;
c3fc2621 46
e501603b
TO
47 /**
48 * Tag ID
49 *
28979d65
CW
50 * @var int|string|null
51 * (SQL type: int unsigned)
52 * Note that values will be retrieved from the database as a string.
e501603b
TO
53 */
54 public $id;
c3fc2621 55
e501603b
TO
56 /**
57 * Name of Tag.
58 *
59 * @var string
28979d65
CW
60 * (SQL type: varchar(64))
61 * Note that values will be retrieved from the database as a string.
e501603b
TO
62 */
63 public $name;
c3fc2621 64
e501603b
TO
65 /**
66 * Optional verbose description of the tag.
67 *
28979d65
CW
68 * @var string|null
69 * (SQL type: varchar(255))
70 * Note that values will be retrieved from the database as a string.
e501603b
TO
71 */
72 public $description;
c3fc2621 73
e501603b
TO
74 /**
75 * Optional parent id for this tag.
76 *
28979d65
CW
77 * @var int|string|null
78 * (SQL type: int unsigned)
79 * Note that values will be retrieved from the database as a string.
e501603b
TO
80 */
81 public $parent_id;
c3fc2621 82
e501603b
TO
83 /**
84 * Is this tag selectable / displayed
85 *
28979d65
CW
86 * @var bool|string|null
87 * (SQL type: tinyint)
88 * Note that values will be retrieved from the database as a string.
e501603b
TO
89 */
90 public $is_selectable;
c3fc2621 91
e501603b 92 /**
28979d65
CW
93 * @var bool|string|null
94 * (SQL type: tinyint)
95 * Note that values will be retrieved from the database as a string.
e501603b
TO
96 */
97 public $is_reserved;
c3fc2621 98
e501603b 99 /**
28979d65
CW
100 * @var bool|string|null
101 * (SQL type: tinyint)
102 * Note that values will be retrieved from the database as a string.
e501603b
TO
103 */
104 public $is_tagset;
c3fc2621 105
e501603b 106 /**
28979d65
CW
107 * @var string|null
108 * (SQL type: varchar(64))
109 * Note that values will be retrieved from the database as a string.
e501603b
TO
110 */
111 public $used_for;
c3fc2621 112
e501603b
TO
113 /**
114 * FK to civicrm_contact, who created this tag
115 *
28979d65
CW
116 * @var int|string|null
117 * (SQL type: int unsigned)
118 * Note that values will be retrieved from the database as a string.
e501603b
TO
119 */
120 public $created_id;
c3fc2621 121
d73974ac
CW
122 /**
123 * Hex color value e.g. #ffffff
124 *
28979d65
CW
125 * @var string|null
126 * (SQL type: varchar(255))
127 * Note that values will be retrieved from the database as a string.
d73974ac
CW
128 */
129 public $color;
c3fc2621 130
e501603b
TO
131 /**
132 * Date and time that tag was created.
133 *
28979d65
CW
134 * @var string|null
135 * (SQL type: datetime)
136 * Note that values will be retrieved from the database as a string.
e501603b
TO
137 */
138 public $created_date;
c3fc2621 139
e501603b 140 /**
f41f0342 141 * Class constructor.
e501603b 142 */
c3fc2621 143 public function __construct() {
e501603b
TO
144 $this->__table = 'civicrm_tag';
145 parent::__construct();
146 }
c3fc2621 147
449c4e6b
CW
148 /**
149 * Returns localized title of this entity.
7b66c3b5
AH
150 *
151 * @param bool $plural
152 * Whether to return the plural version of the title.
449c4e6b 153 */
7b66c3b5
AH
154 public static function getEntityTitle($plural = FALSE) {
155 return $plural ? ts('Tags') : ts('Tag');
449c4e6b
CW
156 }
157
e501603b 158 /**
f41f0342 159 * Returns foreign keys and entity references.
e501603b
TO
160 *
161 * @return array
162 * [CRM_Core_Reference_Interface]
163 */
c3fc2621 164 public static function getReferenceColumns() {
346aaaba 165 if (!isset(Civi::$statics[__CLASS__]['links'])) {
fa45b5b9 166 Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
c3fc2621
CW
167 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'parent_id', 'civicrm_tag', 'id');
168 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'created_id', 'civicrm_contact', 'id');
346aaaba 169 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 170 }
346aaaba 171 return Civi::$statics[__CLASS__]['links'];
e501603b 172 }
c3fc2621 173
e501603b
TO
174 /**
175 * Returns all the column names of this table
176 *
177 * @return array
178 */
c3fc2621 179 public static function &fields() {
346aaaba 180 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
c3fc2621
CW
181 Civi::$statics[__CLASS__]['fields'] = [
182 'id' => [
e501603b
TO
183 'name' => 'id',
184 'type' => CRM_Utils_Type::T_INT,
c3fc2621 185 'title' => ts('Tag ID'),
215b423e 186 'description' => ts('Tag ID'),
c3fc2621 187 'required' => TRUE,
a36434b9 188 'where' => 'civicrm_tag.id',
522a26c9 189 'table_name' => 'civicrm_tag',
190 'entity' => 'Tag',
191 'bao' => 'CRM_Core_BAO_Tag',
6a7e5e5d 192 'localizable' => 0,
2cbbebe8
A
193 'html' => [
194 'type' => 'Number',
195 ],
1fe423d6 196 'readonly' => TRUE,
a9d0587b 197 'add' => '1.1',
c3fc2621
CW
198 ],
199 'name' => [
e501603b
TO
200 'name' => 'name',
201 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 202 'title' => ts('Tag Name'),
215b423e 203 'description' => ts('Name of Tag.'),
c3fc2621 204 'required' => TRUE,
e501603b
TO
205 'maxlength' => 64,
206 'size' => CRM_Utils_Type::BIG,
a36434b9 207 'where' => 'civicrm_tag.name',
522a26c9 208 'table_name' => 'civicrm_tag',
209 'entity' => 'Tag',
210 'bao' => 'CRM_Core_BAO_Tag',
6a7e5e5d 211 'localizable' => 0,
a9d0587b 212 'add' => '1.1',
c3fc2621
CW
213 ],
214 'description' => [
e501603b
TO
215 'name' => 'description',
216 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 217 'title' => ts('Description'),
215b423e 218 'description' => ts('Optional verbose description of the tag.'),
e501603b
TO
219 'maxlength' => 255,
220 'size' => CRM_Utils_Type::HUGE,
a36434b9 221 'where' => 'civicrm_tag.description',
522a26c9 222 'table_name' => 'civicrm_tag',
223 'entity' => 'Tag',
224 'bao' => 'CRM_Core_BAO_Tag',
6a7e5e5d 225 'localizable' => 0,
a9d0587b 226 'add' => '1.1',
c3fc2621
CW
227 ],
228 'parent_id' => [
e501603b
TO
229 'name' => 'parent_id',
230 'type' => CRM_Utils_Type::T_INT,
2cbbebe8 231 'title' => ts('Parent Tag ID'),
215b423e 232 'description' => ts('Optional parent id for this tag.'),
a36434b9 233 'where' => 'civicrm_tag.parent_id',
5fb0de1f 234 'default' => NULL,
522a26c9 235 'table_name' => 'civicrm_tag',
236 'entity' => 'Tag',
237 'bao' => 'CRM_Core_BAO_Tag',
6a7e5e5d 238 'localizable' => 0,
e501603b 239 'FKClassName' => 'CRM_Core_DAO_Tag',
2cbbebe8
A
240 'html' => [
241 'label' => ts("Parent Tag"),
242 ],
e9f4f742
PN
243 'pseudoconstant' => [
244 'table' => 'civicrm_tag',
245 'keyColumn' => 'id',
246 'labelColumn' => 'name',
247 ],
a9d0587b 248 'add' => '1.1',
c3fc2621
CW
249 ],
250 'is_selectable' => [
e501603b
TO
251 'name' => 'is_selectable',
252 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 253 'title' => ts('Display Tag?'),
215b423e 254 'description' => ts('Is this tag selectable / displayed'),
a36434b9 255 'where' => 'civicrm_tag.is_selectable',
e501603b 256 'default' => '1',
522a26c9 257 'table_name' => 'civicrm_tag',
258 'entity' => 'Tag',
259 'bao' => 'CRM_Core_BAO_Tag',
6a7e5e5d 260 'localizable' => 0,
a9d0587b 261 'add' => '2.1',
c3fc2621
CW
262 ],
263 'is_reserved' => [
e501603b
TO
264 'name' => 'is_reserved',
265 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 266 'title' => ts('Reserved'),
a36434b9 267 'where' => 'civicrm_tag.is_reserved',
45a83e42 268 'default' => '0',
522a26c9 269 'table_name' => 'civicrm_tag',
270 'entity' => 'Tag',
271 'bao' => 'CRM_Core_BAO_Tag',
6a7e5e5d 272 'localizable' => 0,
a9d0587b 273 'add' => '3.2',
c3fc2621
CW
274 ],
275 'is_tagset' => [
e501603b
TO
276 'name' => 'is_tagset',
277 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 278 'title' => ts('Tagset'),
a36434b9 279 'where' => 'civicrm_tag.is_tagset',
45a83e42 280 'default' => '0',
522a26c9 281 'table_name' => 'civicrm_tag',
282 'entity' => 'Tag',
283 'bao' => 'CRM_Core_BAO_Tag',
6a7e5e5d 284 'localizable' => 0,
a9d0587b 285 'add' => '3.2',
c3fc2621
CW
286 ],
287 'used_for' => [
e501603b
TO
288 'name' => 'used_for',
289 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 290 'title' => ts('Used For'),
e501603b
TO
291 'maxlength' => 64,
292 'size' => CRM_Utils_Type::BIG,
a36434b9 293 'where' => 'civicrm_tag.used_for',
5fb0de1f 294 'default' => NULL,
522a26c9 295 'table_name' => 'civicrm_tag',
296 'entity' => 'Tag',
297 'bao' => 'CRM_Core_BAO_Tag',
6a7e5e5d 298 'localizable' => 0,
bc7b7b4a 299 'serialize' => self::SERIALIZE_COMMA,
c3fc2621 300 'html' => [
e501603b 301 'type' => 'Select',
c3fc2621
CW
302 ],
303 'pseudoconstant' => [
e501603b
TO
304 'optionGroupName' => 'tag_used_for',
305 'optionEditPath' => 'civicrm/admin/options/tag_used_for',
e6ca0a57 306 ],
a9d0587b 307 'add' => '3.2',
c3fc2621
CW
308 ],
309 'created_id' => [
e501603b
TO
310 'name' => 'created_id',
311 'type' => CRM_Utils_Type::T_INT,
c23563e3 312 'title' => ts('Created By Contact ID'),
215b423e 313 'description' => ts('FK to civicrm_contact, who created this tag'),
a36434b9 314 'where' => 'civicrm_tag.created_id',
522a26c9 315 'table_name' => 'civicrm_tag',
316 'entity' => 'Tag',
317 'bao' => 'CRM_Core_BAO_Tag',
6a7e5e5d 318 'localizable' => 0,
e501603b 319 'FKClassName' => 'CRM_Contact_DAO_Contact',
2cbbebe8 320 'html' => [
c23563e3 321 'label' => ts("Created By"),
2cbbebe8 322 ],
a9d0587b 323 'add' => '3.4',
c3fc2621
CW
324 ],
325 'color' => [
d73974ac
CW
326 'name' => 'color',
327 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 328 'title' => ts('Color'),
215b423e 329 'description' => ts('Hex color value e.g. #ffffff'),
d73974ac
CW
330 'maxlength' => 255,
331 'size' => CRM_Utils_Type::HUGE,
a36434b9 332 'where' => 'civicrm_tag.color',
5fb0de1f 333 'default' => NULL,
522a26c9 334 'table_name' => 'civicrm_tag',
335 'entity' => 'Tag',
336 'bao' => 'CRM_Core_BAO_Tag',
6a7e5e5d 337 'localizable' => 0,
a9d0587b 338 'add' => '4.7',
c3fc2621
CW
339 ],
340 'created_date' => [
e501603b
TO
341 'name' => 'created_date',
342 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
c3fc2621 343 'title' => ts('Tag Created Date'),
215b423e 344 'description' => ts('Date and time that tag was created.'),
a36434b9 345 'where' => 'civicrm_tag.created_date',
522a26c9 346 'table_name' => 'civicrm_tag',
347 'entity' => 'Tag',
348 'bao' => 'CRM_Core_BAO_Tag',
6a7e5e5d 349 'localizable' => 0,
a9d0587b 350 'add' => '3.4',
c3fc2621
CW
351 ],
352 ];
346aaaba 353 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 354 }
346aaaba 355 return Civi::$statics[__CLASS__]['fields'];
e501603b 356 }
c3fc2621 357
e501603b 358 /**
bd8e0b14 359 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
360 *
361 * @return array
bd8e0b14 362 * Array(string $name => string $uniqueName).
e501603b 363 */
c3fc2621 364 public static function &fieldKeys() {
bd8e0b14
TO
365 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
366 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 367 }
bd8e0b14 368 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b 369 }
c3fc2621 370
e501603b
TO
371 /**
372 * Returns the names of this table
373 *
374 * @return string
375 */
c3fc2621 376 public static function getTableName() {
e501603b
TO
377 return self::$_tableName;
378 }
c3fc2621 379
e501603b
TO
380 /**
381 * Returns if this table needs to be logged
382 *
c3fc2621 383 * @return bool
e501603b 384 */
c3fc2621 385 public function getLog() {
e501603b
TO
386 return self::$_log;
387 }
c3fc2621 388
e501603b
TO
389 /**
390 * Returns the list of fields that can be imported
391 *
392 * @param bool $prefix
393 *
394 * @return array
395 */
c3fc2621
CW
396 public static function &import($prefix = FALSE) {
397 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'tag', $prefix, []);
60808919 398 return $r;
e501603b 399 }
c3fc2621 400
e501603b
TO
401 /**
402 * Returns the list of fields that can be exported
403 *
404 * @param bool $prefix
405 *
406 * @return array
407 */
c3fc2621
CW
408 public static function &export($prefix = FALSE) {
409 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'tag', $prefix, []);
60808919 410 return $r;
e501603b 411 }
c3fc2621 412
e7a6b91a
AS
413 /**
414 * Returns the list of indices
c3fc2621
CW
415 *
416 * @param bool $localize
417 *
418 * @return array
e7a6b91a
AS
419 */
420 public static function indices($localize = TRUE) {
c3fc2621
CW
421 $indices = [
422 'UI_name' => [
e7a6b91a 423 'name' => 'UI_name',
c3fc2621 424 'field' => [
e7a6b91a 425 0 => 'name',
c3fc2621
CW
426 ],
427 'localizable' => FALSE,
428 'unique' => TRUE,
e7a6b91a 429 'sig' => 'civicrm_tag::1::name',
c3fc2621
CW
430 ],
431 ];
e7a6b91a
AS
432 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
433 }
c3fc2621 434
e501603b 435}