Respect '0' as a default when generating DAOs
[civicrm-core.git] / CRM / Core / DAO / CustomField.php
CommitLineData
e501603b 1<?php
c3fc2621 2
e501603b
TO
3/**
4 * @package CRM
8c9251b3 5 * @copyright CiviCRM LLC (c) 2004-2018
e501603b
TO
6 *
7 * Generated from xml/schema/CRM/Core/CustomField.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
5830940d 9 * (GenCodeChecksum:7f096c92af68ef9564675e3d708fbbe1)
e501603b 10 */
c3fc2621 11
f41f0342 12/**
c3fc2621 13 * Database access object for the CustomField entity.
f41f0342 14 */
e501603b 15class CRM_Core_DAO_CustomField extends CRM_Core_DAO {
c3fc2621 16
e501603b 17 /**
f41f0342 18 * Static instance to hold the table name.
e501603b
TO
19 *
20 * @var string
21 */
22 static $_tableName = 'civicrm_custom_field';
c3fc2621 23
e501603b 24 /**
f41f0342 25 * Should CiviCRM log any modifications to this table in the civicrm_log table.
e501603b 26 *
c3fc2621 27 * @var bool
e501603b 28 */
c3fc2621
CW
29 static $_log = TRUE;
30
e501603b
TO
31 /**
32 * Unique Custom Field ID
33 *
34 * @var int unsigned
35 */
36 public $id;
c3fc2621 37
e501603b
TO
38 /**
39 * FK to civicrm_custom_group.
40 *
41 * @var int unsigned
42 */
43 public $custom_group_id;
c3fc2621 44
e501603b
TO
45 /**
46 * Variable name/programmatic handle for this group.
47 *
48 * @var string
49 */
50 public $name;
c3fc2621 51
e501603b
TO
52 /**
53 * Text for form field label (also friendly name for administering this custom property).
54 *
55 * @var string
56 */
57 public $label;
c3fc2621 58
e501603b
TO
59 /**
60 * Controls location of data storage in extended_data table.
61 *
62 * @var string
63 */
64 public $data_type;
c3fc2621 65
e501603b
TO
66 /**
67 * HTML types plus several built-in extended types.
68 *
69 * @var string
70 */
71 public $html_type;
c3fc2621 72
e501603b
TO
73 /**
74 * Use form_options.is_default for field_types which use options.
75 *
76 * @var string
77 */
78 public $default_value;
c3fc2621 79
e501603b
TO
80 /**
81 * Is a value required for this property.
82 *
83 * @var boolean
84 */
85 public $is_required;
c3fc2621 86
e501603b
TO
87 /**
88 * Is this property searchable.
89 *
90 * @var boolean
91 */
92 public $is_searchable;
c3fc2621 93
e501603b
TO
94 /**
95 * Is this property range searchable.
96 *
97 * @var boolean
98 */
99 public $is_search_range;
c3fc2621 100
e501603b
TO
101 /**
102 * Controls field display order within an extended property group.
103 *
104 * @var int
105 */
106 public $weight;
c3fc2621 107
e501603b
TO
108 /**
109 * Description and/or help text to display before this field.
110 *
111 * @var text
112 */
113 public $help_pre;
c3fc2621 114
e501603b
TO
115 /**
116 * Description and/or help text to display after this field.
117 *
118 * @var text
119 */
120 public $help_post;
c3fc2621 121
e501603b
TO
122 /**
123 * Optional format instructions for specific field types, like date types.
124 *
125 * @var string
126 */
127 public $mask;
c3fc2621 128
e501603b
TO
129 /**
130 * Store collection of type-appropriate attributes, e.g. textarea needs rows/cols attributes
131 *
132 * @var string
133 */
134 public $attributes;
c3fc2621 135
e501603b
TO
136 /**
137 * Optional scripting attributes for field.
138 *
139 * @var string
140 */
141 public $javascript;
c3fc2621 142
e501603b
TO
143 /**
144 * Is this property active?
145 *
146 * @var boolean
147 */
148 public $is_active;
c3fc2621 149
e501603b
TO
150 /**
151 * Is this property set by PHP Code? A code field is viewable but not editable
152 *
153 * @var boolean
154 */
155 public $is_view;
c3fc2621 156
e501603b
TO
157 /**
158 * number of options per line for checkbox and radio
159 *
160 * @var int unsigned
161 */
162 public $options_per_line;
c3fc2621 163
e501603b
TO
164 /**
165 * field length if alphanumeric
166 *
167 * @var int unsigned
168 */
169 public $text_length;
c3fc2621 170
e501603b
TO
171 /**
172 * Date may be up to start_date_years years prior to the current date.
173 *
174 * @var int
175 */
176 public $start_date_years;
c3fc2621 177
e501603b
TO
178 /**
179 * Date may be up to end_date_years years after the current date.
180 *
181 * @var int
182 */
183 public $end_date_years;
c3fc2621 184
e501603b
TO
185 /**
186 * date format for custom date
187 *
188 * @var string
189 */
190 public $date_format;
c3fc2621 191
e501603b
TO
192 /**
193 * time format for custom date
194 *
195 * @var int unsigned
196 */
197 public $time_format;
c3fc2621 198
e501603b
TO
199 /**
200 * Number of columns in Note Field
201 *
202 * @var int unsigned
203 */
204 public $note_columns;
c3fc2621 205
e501603b
TO
206 /**
207 * Number of rows in Note Field
208 *
209 * @var int unsigned
210 */
211 public $note_rows;
c3fc2621 212
e501603b
TO
213 /**
214 * Name of the column that holds the values for this field.
215 *
216 * @var string
217 */
218 public $column_name;
c3fc2621 219
e501603b
TO
220 /**
221 * For elements with options, the option group id that is used
222 *
223 * @var int unsigned
224 */
225 public $option_group_id;
c3fc2621 226
e501603b
TO
227 /**
228 * Stores Contact Get API params contact reference custom fields. May be used for other filters in the future.
229 *
230 * @var string
231 */
232 public $filter;
c3fc2621 233
e501603b
TO
234 /**
235 * Should the multi-record custom field values be displayed in tab table listing
236 *
237 * @var boolean
238 */
239 public $in_selector;
c3fc2621 240
e501603b 241 /**
f41f0342 242 * Class constructor.
e501603b 243 */
c3fc2621 244 public function __construct() {
e501603b
TO
245 $this->__table = 'civicrm_custom_field';
246 parent::__construct();
247 }
c3fc2621 248
e501603b 249 /**
f41f0342 250 * Returns foreign keys and entity references.
e501603b
TO
251 *
252 * @return array
253 * [CRM_Core_Reference_Interface]
254 */
c3fc2621 255 public static function getReferenceColumns() {
346aaaba
TO
256 if (!isset(Civi::$statics[__CLASS__]['links'])) {
257 Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
c3fc2621 258 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'custom_group_id', 'civicrm_custom_group', 'id');
346aaaba 259 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 260 }
346aaaba 261 return Civi::$statics[__CLASS__]['links'];
e501603b 262 }
c3fc2621 263
e501603b
TO
264 /**
265 * Returns all the column names of this table
266 *
267 * @return array
268 */
c3fc2621 269 public static function &fields() {
346aaaba 270 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
c3fc2621
CW
271 Civi::$statics[__CLASS__]['fields'] = [
272 'id' => [
e501603b
TO
273 'name' => 'id',
274 'type' => CRM_Utils_Type::T_INT,
c3fc2621 275 'title' => ts('Custom Field ID'),
e501603b 276 'description' => 'Unique Custom Field ID',
c3fc2621 277 'required' => TRUE,
522a26c9 278 'table_name' => 'civicrm_custom_field',
279 'entity' => 'CustomField',
280 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 281 'localizable' => 0,
c3fc2621
CW
282 ],
283 'custom_group_id' => [
e501603b
TO
284 'name' => 'custom_group_id',
285 'type' => CRM_Utils_Type::T_INT,
c3fc2621 286 'title' => ts('Custom Group'),
e501603b 287 'description' => 'FK to civicrm_custom_group.',
c3fc2621 288 'required' => TRUE,
522a26c9 289 'table_name' => 'civicrm_custom_field',
290 'entity' => 'CustomField',
291 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 292 'localizable' => 0,
e501603b 293 'FKClassName' => 'CRM_Core_DAO_CustomGroup',
c3fc2621 294 'html' => [
e501603b 295 'type' => 'Select',
c3fc2621
CW
296 ],
297 'pseudoconstant' => [
e501603b
TO
298 'table' => 'civicrm_custom_group',
299 'keyColumn' => 'id',
300 'labelColumn' => 'title',
c3fc2621
CW
301 ]
302 ],
303 'name' => [
e501603b
TO
304 'name' => 'name',
305 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 306 'title' => ts('Custom Field Name'),
e501603b
TO
307 'description' => 'Variable name/programmatic handle for this group.',
308 'maxlength' => 64,
309 'size' => CRM_Utils_Type::BIG,
522a26c9 310 'table_name' => 'civicrm_custom_field',
311 'entity' => 'CustomField',
312 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 313 'localizable' => 0,
c3fc2621
CW
314 ],
315 'label' => [
e501603b
TO
316 'name' => 'label',
317 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 318 'title' => ts('Custom Field Label'),
e501603b 319 'description' => 'Text for form field label (also friendly name for administering this custom property).',
c3fc2621 320 'required' => TRUE,
e501603b
TO
321 'maxlength' => 255,
322 'size' => CRM_Utils_Type::HUGE,
522a26c9 323 'table_name' => 'civicrm_custom_field',
324 'entity' => 'CustomField',
325 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 326 'localizable' => 1,
c3fc2621
CW
327 ],
328 'data_type' => [
e501603b
TO
329 'name' => 'data_type',
330 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 331 'title' => ts('Custom Field Data Type'),
e501603b 332 'description' => 'Controls location of data storage in extended_data table.',
c3fc2621 333 'required' => TRUE,
e501603b
TO
334 'maxlength' => 16,
335 'size' => CRM_Utils_Type::TWELVE,
522a26c9 336 'table_name' => 'civicrm_custom_field',
337 'entity' => 'CustomField',
338 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 339 'localizable' => 0,
c3fc2621 340 'html' => [
e501603b 341 'type' => 'Select',
c3fc2621
CW
342 ],
343 'pseudoconstant' => [
e501603b 344 'callback' => 'CRM_Core_BAO_CustomField::dataType',
c3fc2621
CW
345 ]
346 ],
347 'html_type' => [
e501603b
TO
348 'name' => 'html_type',
349 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 350 'title' => ts('Custom Field HTML Type'),
e501603b 351 'description' => 'HTML types plus several built-in extended types.',
c3fc2621 352 'required' => TRUE,
e501603b
TO
353 'maxlength' => 32,
354 'size' => CRM_Utils_Type::MEDIUM,
522a26c9 355 'table_name' => 'civicrm_custom_field',
356 'entity' => 'CustomField',
357 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 358 'localizable' => 0,
c3fc2621 359 'pseudoconstant' => [
e501603b 360 'callback' => 'CRM_Core_SelectValues::customHtmlType',
c3fc2621
CW
361 ]
362 ],
363 'default_value' => [
e501603b
TO
364 'name' => 'default_value',
365 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 366 'title' => ts('Custom Field Default'),
e501603b
TO
367 'description' => 'Use form_options.is_default for field_types which use options.',
368 'maxlength' => 255,
369 'size' => CRM_Utils_Type::HUGE,
522a26c9 370 'table_name' => 'civicrm_custom_field',
371 'entity' => 'CustomField',
372 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 373 'localizable' => 0,
c3fc2621
CW
374 ],
375 'is_required' => [
e501603b
TO
376 'name' => 'is_required',
377 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 378 'title' => ts('Custom Field Is Required?'),
e501603b 379 'description' => 'Is a value required for this property.',
45a83e42 380 'default' => '0',
522a26c9 381 'table_name' => 'civicrm_custom_field',
382 'entity' => 'CustomField',
383 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 384 'localizable' => 0,
c3fc2621
CW
385 ],
386 'is_searchable' => [
e501603b
TO
387 'name' => 'is_searchable',
388 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 389 'title' => ts('Allow Searching on Field?'),
e501603b 390 'description' => 'Is this property searchable.',
45a83e42 391 'default' => '0',
522a26c9 392 'table_name' => 'civicrm_custom_field',
393 'entity' => 'CustomField',
394 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 395 'localizable' => 0,
c3fc2621
CW
396 ],
397 'is_search_range' => [
e501603b
TO
398 'name' => 'is_search_range',
399 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 400 'title' => ts('Search as a Range'),
e501603b 401 'description' => 'Is this property range searchable.',
45a83e42 402 'default' => '0',
522a26c9 403 'table_name' => 'civicrm_custom_field',
404 'entity' => 'CustomField',
405 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 406 'localizable' => 0,
c3fc2621
CW
407 ],
408 'weight' => [
e501603b
TO
409 'name' => 'weight',
410 'type' => CRM_Utils_Type::T_INT,
c3fc2621 411 'title' => ts('Order'),
e501603b 412 'description' => 'Controls field display order within an extended property group.',
c3fc2621 413 'required' => TRUE,
e501603b 414 'default' => '1',
522a26c9 415 'table_name' => 'civicrm_custom_field',
416 'entity' => 'CustomField',
417 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 418 'localizable' => 0,
c3fc2621
CW
419 ],
420 'help_pre' => [
e501603b
TO
421 'name' => 'help_pre',
422 'type' => CRM_Utils_Type::T_TEXT,
c3fc2621 423 'title' => ts('Custom Field Pre Text'),
e501603b 424 'description' => 'Description and/or help text to display before this field.',
522a26c9 425 'table_name' => 'civicrm_custom_field',
426 'entity' => 'CustomField',
427 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 428 'localizable' => 1,
c3fc2621
CW
429 ],
430 'help_post' => [
e501603b
TO
431 'name' => 'help_post',
432 'type' => CRM_Utils_Type::T_TEXT,
c3fc2621 433 'title' => ts('Custom Field Post Text'),
e501603b 434 'description' => 'Description and/or help text to display after this field.',
522a26c9 435 'table_name' => 'civicrm_custom_field',
436 'entity' => 'CustomField',
437 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 438 'localizable' => 1,
c3fc2621
CW
439 ],
440 'mask' => [
e501603b
TO
441 'name' => 'mask',
442 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 443 'title' => ts('Custom Field Formatting'),
e501603b
TO
444 'description' => 'Optional format instructions for specific field types, like date types.',
445 'maxlength' => 64,
446 'size' => CRM_Utils_Type::BIG,
522a26c9 447 'table_name' => 'civicrm_custom_field',
448 'entity' => 'CustomField',
449 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 450 'localizable' => 0,
c3fc2621
CW
451 ],
452 'attributes' => [
e501603b
TO
453 'name' => 'attributes',
454 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 455 'title' => ts('Custom Field Attributes'),
e501603b
TO
456 'description' => 'Store collection of type-appropriate attributes, e.g. textarea needs rows/cols attributes',
457 'maxlength' => 255,
458 'size' => CRM_Utils_Type::HUGE,
522a26c9 459 'table_name' => 'civicrm_custom_field',
460 'entity' => 'CustomField',
461 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 462 'localizable' => 0,
c3fc2621
CW
463 ],
464 'javascript' => [
e501603b
TO
465 'name' => 'javascript',
466 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 467 'title' => ts('Custom Field Javascript'),
e501603b
TO
468 'description' => 'Optional scripting attributes for field.',
469 'maxlength' => 255,
470 'size' => CRM_Utils_Type::HUGE,
522a26c9 471 'table_name' => 'civicrm_custom_field',
472 'entity' => 'CustomField',
473 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 474 'localizable' => 0,
c3fc2621
CW
475 ],
476 'is_active' => [
e501603b
TO
477 'name' => 'is_active',
478 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 479 'title' => ts('Custom Field Is Active?'),
e501603b 480 'description' => 'Is this property active?',
110f4343 481 'default' => '1',
522a26c9 482 'table_name' => 'civicrm_custom_field',
483 'entity' => 'CustomField',
484 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 485 'localizable' => 0,
c3fc2621
CW
486 ],
487 'is_view' => [
e501603b
TO
488 'name' => 'is_view',
489 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 490 'title' => ts('Field is Viewable'),
e501603b 491 'description' => 'Is this property set by PHP Code? A code field is viewable but not editable',
45a83e42 492 'default' => '0',
522a26c9 493 'table_name' => 'civicrm_custom_field',
494 'entity' => 'CustomField',
495 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 496 'localizable' => 0,
c3fc2621
CW
497 ],
498 'options_per_line' => [
e501603b
TO
499 'name' => 'options_per_line',
500 'type' => CRM_Utils_Type::T_INT,
c3fc2621 501 'title' => ts('Field Options Per Line'),
e501603b 502 'description' => 'number of options per line for checkbox and radio',
522a26c9 503 'table_name' => 'civicrm_custom_field',
504 'entity' => 'CustomField',
505 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 506 'localizable' => 0,
c3fc2621
CW
507 ],
508 'text_length' => [
e501603b
TO
509 'name' => 'text_length',
510 'type' => CRM_Utils_Type::T_INT,
c3fc2621 511 'title' => ts('Field Length'),
e501603b 512 'description' => 'field length if alphanumeric',
522a26c9 513 'table_name' => 'civicrm_custom_field',
514 'entity' => 'CustomField',
515 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 516 'localizable' => 0,
c3fc2621
CW
517 ],
518 'start_date_years' => [
e501603b
TO
519 'name' => 'start_date_years',
520 'type' => CRM_Utils_Type::T_INT,
c3fc2621 521 'title' => ts('Field Start Date'),
e501603b 522 'description' => 'Date may be up to start_date_years years prior to the current date.',
522a26c9 523 'table_name' => 'civicrm_custom_field',
524 'entity' => 'CustomField',
525 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 526 'localizable' => 0,
c3fc2621
CW
527 ],
528 'end_date_years' => [
e501603b
TO
529 'name' => 'end_date_years',
530 'type' => CRM_Utils_Type::T_INT,
c3fc2621 531 'title' => ts('Field End Date'),
e501603b 532 'description' => 'Date may be up to end_date_years years after the current date.',
522a26c9 533 'table_name' => 'civicrm_custom_field',
534 'entity' => 'CustomField',
535 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 536 'localizable' => 0,
c3fc2621
CW
537 ],
538 'date_format' => [
e501603b
TO
539 'name' => 'date_format',
540 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 541 'title' => ts('Field Data Format'),
e501603b
TO
542 'description' => 'date format for custom date',
543 'maxlength' => 64,
544 'size' => CRM_Utils_Type::BIG,
522a26c9 545 'table_name' => 'civicrm_custom_field',
546 'entity' => 'CustomField',
547 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 548 'localizable' => 0,
c3fc2621
CW
549 ],
550 'time_format' => [
e501603b
TO
551 'name' => 'time_format',
552 'type' => CRM_Utils_Type::T_INT,
c3fc2621 553 'title' => ts('Field Time Format'),
e501603b 554 'description' => 'time format for custom date',
522a26c9 555 'table_name' => 'civicrm_custom_field',
556 'entity' => 'CustomField',
557 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 558 'localizable' => 0,
c3fc2621
CW
559 ],
560 'note_columns' => [
e501603b
TO
561 'name' => 'note_columns',
562 'type' => CRM_Utils_Type::T_INT,
c3fc2621 563 'title' => ts('Field Note Columns'),
e501603b 564 'description' => ' Number of columns in Note Field ',
522a26c9 565 'table_name' => 'civicrm_custom_field',
566 'entity' => 'CustomField',
567 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 568 'localizable' => 0,
c3fc2621
CW
569 ],
570 'note_rows' => [
e501603b
TO
571 'name' => 'note_rows',
572 'type' => CRM_Utils_Type::T_INT,
c3fc2621 573 'title' => ts('Field Note Rows'),
e501603b 574 'description' => ' Number of rows in Note Field ',
522a26c9 575 'table_name' => 'civicrm_custom_field',
576 'entity' => 'CustomField',
577 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 578 'localizable' => 0,
c3fc2621
CW
579 ],
580 'column_name' => [
e501603b
TO
581 'name' => 'column_name',
582 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 583 'title' => ts('Field Column Name'),
e501603b
TO
584 'description' => 'Name of the column that holds the values for this field.',
585 'maxlength' => 255,
586 'size' => CRM_Utils_Type::HUGE,
522a26c9 587 'table_name' => 'civicrm_custom_field',
588 'entity' => 'CustomField',
589 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 590 'localizable' => 0,
c3fc2621
CW
591 ],
592 'option_group_id' => [
e501603b
TO
593 'name' => 'option_group_id',
594 'type' => CRM_Utils_Type::T_INT,
c3fc2621 595 'title' => ts('Field Option Group'),
e501603b 596 'description' => 'For elements with options, the option group id that is used',
522a26c9 597 'table_name' => 'civicrm_custom_field',
598 'entity' => 'CustomField',
599 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 600 'localizable' => 0,
5830940d
MM
601 'pseudoconstant' => [
602 'table' => 'civicrm_option_group',
603 'keyColumn' => 'id',
604 'labelColumn' => 'title',
605 ]
c3fc2621
CW
606 ],
607 'filter' => [
e501603b
TO
608 'name' => 'filter',
609 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 610 'title' => ts('Field Filter'),
e501603b
TO
611 'description' => 'Stores Contact Get API params contact reference custom fields. May be used for other filters in the future.',
612 'maxlength' => 255,
613 'size' => CRM_Utils_Type::HUGE,
522a26c9 614 'table_name' => 'civicrm_custom_field',
615 'entity' => 'CustomField',
616 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 617 'localizable' => 0,
c3fc2621
CW
618 ],
619 'in_selector' => [
e501603b
TO
620 'name' => 'in_selector',
621 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 622 'title' => ts('Field Display'),
e501603b 623 'description' => 'Should the multi-record custom field values be displayed in tab table listing',
45a83e42 624 'default' => '0',
522a26c9 625 'table_name' => 'civicrm_custom_field',
626 'entity' => 'CustomField',
627 'bao' => 'CRM_Core_BAO_CustomField',
6a7e5e5d 628 'localizable' => 0,
c3fc2621
CW
629 ],
630 ];
346aaaba 631 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 632 }
346aaaba 633 return Civi::$statics[__CLASS__]['fields'];
e501603b 634 }
c3fc2621 635
e501603b 636 /**
bd8e0b14 637 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
638 *
639 * @return array
bd8e0b14 640 * Array(string $name => string $uniqueName).
e501603b 641 */
c3fc2621 642 public static function &fieldKeys() {
bd8e0b14
TO
643 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
644 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 645 }
bd8e0b14 646 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b 647 }
c3fc2621 648
e501603b
TO
649 /**
650 * Returns the names of this table
651 *
652 * @return string
653 */
c3fc2621 654 public static function getTableName() {
e501603b
TO
655 return CRM_Core_DAO::getLocaleTableName(self::$_tableName);
656 }
c3fc2621 657
e501603b
TO
658 /**
659 * Returns if this table needs to be logged
660 *
c3fc2621 661 * @return bool
e501603b 662 */
c3fc2621 663 public function getLog() {
e501603b
TO
664 return self::$_log;
665 }
c3fc2621 666
e501603b
TO
667 /**
668 * Returns the list of fields that can be imported
669 *
670 * @param bool $prefix
671 *
672 * @return array
673 */
c3fc2621
CW
674 public static function &import($prefix = FALSE) {
675 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'custom_field', $prefix, []);
60808919 676 return $r;
e501603b 677 }
c3fc2621 678
e501603b
TO
679 /**
680 * Returns the list of fields that can be exported
681 *
682 * @param bool $prefix
683 *
684 * @return array
685 */
c3fc2621
CW
686 public static function &export($prefix = FALSE) {
687 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'custom_field', $prefix, []);
60808919 688 return $r;
e501603b 689 }
c3fc2621 690
e7a6b91a
AS
691 /**
692 * Returns the list of indices
c3fc2621
CW
693 *
694 * @param bool $localize
695 *
696 * @return array
e7a6b91a
AS
697 */
698 public static function indices($localize = TRUE) {
c3fc2621
CW
699 $indices = [
700 'UI_label_custom_group_id' => [
e7a6b91a 701 'name' => 'UI_label_custom_group_id',
c3fc2621 702 'field' => [
e7a6b91a
AS
703 0 => 'label',
704 1 => 'custom_group_id',
c3fc2621
CW
705 ],
706 'localizable' => TRUE,
707 'unique' => TRUE,
e7a6b91a 708 'sig' => 'civicrm_custom_field::1::label::custom_group_id',
c3fc2621
CW
709 ],
710 'UI_name_custom_group_id' => [
e7a6b91a 711 'name' => 'UI_name_custom_group_id',
c3fc2621 712 'field' => [
e7a6b91a
AS
713 0 => 'name',
714 1 => 'custom_group_id',
c3fc2621
CW
715 ],
716 'localizable' => FALSE,
717 'unique' => TRUE,
e7a6b91a 718 'sig' => 'civicrm_custom_field::1::name::custom_group_id',
c3fc2621
CW
719 ],
720 ];
e7a6b91a
AS
721 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
722 }
c3fc2621 723
e501603b 724}