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