Merge pull request #12056 from eileenmcnaughton/pcp
[civicrm-core.git] / CRM / Core / DAO / CustomGroup.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/CustomGroup.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
2a5c9b4d 9 * (GenCodeChecksum:4b960c311aed67174e9c55901ba3993b)
e501603b 10 */
c3fc2621 11
f41f0342 12/**
c3fc2621 13 * Database access object for the CustomGroup entity.
f41f0342 14 */
e501603b 15class CRM_Core_DAO_CustomGroup 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_group';
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 Group ID
33 *
34 * @var int unsigned
35 */
36 public $id;
c3fc2621 37
e501603b
TO
38 /**
39 * Variable name/programmatic handle for this group.
40 *
41 * @var string
42 */
43 public $name;
c3fc2621 44
e501603b
TO
45 /**
46 * Friendly Name.
47 *
48 * @var string
49 */
50 public $title;
c3fc2621 51
e501603b
TO
52 /**
53 * Type of object this group extends (can add other options later e.g. contact_address, etc.).
54 *
55 * @var string
56 */
57 public $extends;
c3fc2621 58
e501603b
TO
59 /**
60 * FK to civicrm_option_value.id (for option group custom_data_type.)
61 *
62 * @var int unsigned
63 */
64 public $extends_entity_column_id;
c3fc2621 65
e501603b
TO
66 /**
67 * linking custom group for dynamic object
68 *
69 * @var string
70 */
71 public $extends_entity_column_value;
c3fc2621 72
e501603b
TO
73 /**
74 * Visual relationship between this form and its parent.
75 *
76 * @var string
77 */
78 public $style;
c3fc2621 79
e501603b
TO
80 /**
81 * Will this group be in collapsed or expanded mode on initial display ?
82 *
83 * @var int unsigned
84 */
85 public $collapse_display;
c3fc2621 86
e501603b
TO
87 /**
88 * Description and/or help text to display before fields in form.
89 *
90 * @var text
91 */
92 public $help_pre;
c3fc2621 93
e501603b
TO
94 /**
95 * Description and/or help text to display after fields in form.
96 *
97 * @var text
98 */
99 public $help_post;
c3fc2621 100
e501603b
TO
101 /**
102 * Controls display order when multiple extended property groups are setup for the same class.
103 *
104 * @var int
105 */
106 public $weight;
c3fc2621 107
e501603b
TO
108 /**
109 * Is this property active?
110 *
111 * @var boolean
112 */
113 public $is_active;
c3fc2621 114
e501603b
TO
115 /**
116 * Name of the table that holds the values for this group.
117 *
118 * @var string
119 */
120 public $table_name;
c3fc2621 121
e501603b
TO
122 /**
123 * Does this group hold multiple values?
124 *
125 * @var boolean
126 */
127 public $is_multiple;
c3fc2621 128
e501603b
TO
129 /**
130 * minimum number of multiple records (typically 0?)
131 *
132 * @var int unsigned
133 */
134 public $min_multiple;
c3fc2621 135
e501603b
TO
136 /**
137 * maximum number of multiple records, if 0 - no max
138 *
139 * @var int unsigned
140 */
141 public $max_multiple;
c3fc2621 142
e501603b
TO
143 /**
144 * Will this group be in collapsed or expanded mode on advanced search display ?
145 *
146 * @var int unsigned
147 */
148 public $collapse_adv_display;
c3fc2621 149
e501603b
TO
150 /**
151 * FK to civicrm_contact, who created this custom group
152 *
153 * @var int unsigned
154 */
155 public $created_id;
c3fc2621 156
e501603b
TO
157 /**
158 * Date and time this custom group was created.
159 *
160 * @var datetime
161 */
162 public $created_date;
c3fc2621 163
e501603b
TO
164 /**
165 * Is this a reserved Custom Group?
166 *
167 * @var boolean
168 */
169 public $is_reserved;
c3fc2621 170
460931ca
JP
171 /**
172 * Is this property public?
173 *
174 * @var boolean
175 */
176 public $is_public;
c3fc2621 177
e501603b 178 /**
f41f0342 179 * Class constructor.
e501603b 180 */
c3fc2621 181 public function __construct() {
e501603b
TO
182 $this->__table = 'civicrm_custom_group';
183 parent::__construct();
184 }
c3fc2621 185
e501603b 186 /**
f41f0342 187 * Returns foreign keys and entity references.
e501603b
TO
188 *
189 * @return array
190 * [CRM_Core_Reference_Interface]
191 */
c3fc2621 192 public static function getReferenceColumns() {
346aaaba
TO
193 if (!isset(Civi::$statics[__CLASS__]['links'])) {
194 Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
c3fc2621 195 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'created_id', 'civicrm_contact', 'id');
346aaaba 196 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 197 }
346aaaba 198 return Civi::$statics[__CLASS__]['links'];
e501603b 199 }
c3fc2621 200
e501603b
TO
201 /**
202 * Returns all the column names of this table
203 *
204 * @return array
205 */
c3fc2621 206 public static function &fields() {
346aaaba 207 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
c3fc2621
CW
208 Civi::$statics[__CLASS__]['fields'] = [
209 'id' => [
e501603b
TO
210 'name' => 'id',
211 'type' => CRM_Utils_Type::T_INT,
c3fc2621 212 'title' => ts('Custom Group ID'),
e501603b 213 'description' => 'Unique Custom Group ID',
c3fc2621 214 'required' => TRUE,
522a26c9 215 'table_name' => 'civicrm_custom_group',
216 'entity' => 'CustomGroup',
217 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 218 'localizable' => 0,
c3fc2621
CW
219 ],
220 'name' => [
e501603b
TO
221 'name' => 'name',
222 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 223 'title' => ts('Custom Group Name'),
e501603b
TO
224 'description' => 'Variable name/programmatic handle for this group.',
225 'maxlength' => 64,
226 'size' => CRM_Utils_Type::BIG,
522a26c9 227 'table_name' => 'civicrm_custom_group',
228 'entity' => 'CustomGroup',
229 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 230 'localizable' => 0,
c3fc2621
CW
231 ],
232 'title' => [
e501603b
TO
233 'name' => 'title',
234 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 235 'title' => ts('Custom Group Title'),
e501603b 236 'description' => 'Friendly Name.',
c3fc2621 237 'required' => TRUE,
e501603b
TO
238 'maxlength' => 64,
239 'size' => CRM_Utils_Type::BIG,
522a26c9 240 'table_name' => 'civicrm_custom_group',
241 'entity' => 'CustomGroup',
242 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 243 'localizable' => 1,
c3fc2621
CW
244 ],
245 'extends' => [
e501603b
TO
246 'name' => 'extends',
247 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 248 'title' => ts('Custom Group Extends'),
e501603b
TO
249 'description' => 'Type of object this group extends (can add other options later e.g. contact_address, etc.).',
250 'maxlength' => 255,
251 'size' => CRM_Utils_Type::HUGE,
252 'default' => 'Contact',
522a26c9 253 'table_name' => 'civicrm_custom_group',
254 'entity' => 'CustomGroup',
255 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 256 'localizable' => 0,
c3fc2621
CW
257 ],
258 'extends_entity_column_id' => [
e501603b
TO
259 'name' => 'extends_entity_column_id',
260 'type' => CRM_Utils_Type::T_INT,
c3fc2621 261 'title' => ts('Custom Group Subtype List'),
e501603b
TO
262 'description' => 'FK to civicrm_option_value.id (for option group custom_data_type.)',
263 'default' => 'NULL',
522a26c9 264 'table_name' => 'civicrm_custom_group',
265 'entity' => 'CustomGroup',
266 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 267 'localizable' => 0,
c3fc2621
CW
268 ],
269 'extends_entity_column_value' => [
e501603b
TO
270 'name' => 'extends_entity_column_value',
271 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 272 'title' => ts('Custom Group Subtype'),
e501603b
TO
273 'description' => 'linking custom group for dynamic object',
274 'maxlength' => 255,
275 'size' => CRM_Utils_Type::HUGE,
522a26c9 276 'table_name' => 'civicrm_custom_group',
277 'entity' => 'CustomGroup',
278 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 279 'localizable' => 0,
2a5c9b4d 280 'serialize' => self::SERIALIZE_SEPARATOR_BOOKEND,
c3fc2621
CW
281 ],
282 'style' => [
e501603b
TO
283 'name' => 'style',
284 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 285 'title' => ts('Custom Group Style'),
e501603b
TO
286 'description' => 'Visual relationship between this form and its parent.',
287 'maxlength' => 15,
288 'size' => CRM_Utils_Type::TWELVE,
522a26c9 289 'table_name' => 'civicrm_custom_group',
290 'entity' => 'CustomGroup',
291 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 292 'localizable' => 0,
c3fc2621 293 'html' => [
e501603b 294 'type' => 'Select',
c3fc2621
CW
295 ],
296 'pseudoconstant' => [
e501603b 297 'callback' => 'CRM_Core_SelectValues::customGroupStyle',
c3fc2621
CW
298 ]
299 ],
300 'collapse_display' => [
e501603b
TO
301 'name' => 'collapse_display',
302 'type' => CRM_Utils_Type::T_INT,
c3fc2621 303 'title' => ts('Collapse Custom Group?'),
e501603b 304 'description' => 'Will this group be in collapsed or expanded mode on initial display ?',
522a26c9 305 'table_name' => 'civicrm_custom_group',
306 'entity' => 'CustomGroup',
307 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 308 'localizable' => 0,
c3fc2621
CW
309 ],
310 'help_pre' => [
e501603b
TO
311 'name' => 'help_pre',
312 'type' => CRM_Utils_Type::T_TEXT,
c3fc2621 313 'title' => ts('Custom Group Pre Text'),
e501603b
TO
314 'description' => 'Description and/or help text to display before fields in form.',
315 'rows' => 4,
316 'cols' => 80,
522a26c9 317 'table_name' => 'civicrm_custom_group',
318 'entity' => 'CustomGroup',
319 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 320 'localizable' => 1,
c3fc2621 321 'html' => [
e501603b 322 'type' => 'TextArea',
c3fc2621
CW
323 ],
324 ],
325 'help_post' => [
e501603b
TO
326 'name' => 'help_post',
327 'type' => CRM_Utils_Type::T_TEXT,
c3fc2621 328 'title' => ts('Custom Group Post Text'),
e501603b
TO
329 'description' => 'Description and/or help text to display after fields in form.',
330 'rows' => 4,
331 'cols' => 80,
522a26c9 332 'table_name' => 'civicrm_custom_group',
333 'entity' => 'CustomGroup',
334 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 335 'localizable' => 1,
c3fc2621 336 'html' => [
e501603b 337 'type' => 'TextArea',
c3fc2621
CW
338 ],
339 ],
340 'weight' => [
e501603b
TO
341 'name' => 'weight',
342 'type' => CRM_Utils_Type::T_INT,
c3fc2621 343 'title' => ts('Order'),
e501603b 344 'description' => 'Controls display order when multiple extended property groups are setup for the same class.',
c3fc2621 345 'required' => TRUE,
e501603b 346 'default' => '1',
522a26c9 347 'table_name' => 'civicrm_custom_group',
348 'entity' => 'CustomGroup',
349 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 350 'localizable' => 0,
c3fc2621
CW
351 ],
352 'is_active' => [
e501603b
TO
353 'name' => 'is_active',
354 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 355 'title' => ts('Custom Group Is Active?'),
e501603b 356 'description' => 'Is this property active?',
522a26c9 357 'table_name' => 'civicrm_custom_group',
358 'entity' => 'CustomGroup',
359 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 360 'localizable' => 0,
c3fc2621
CW
361 ],
362 'table_name' => [
e501603b
TO
363 'name' => 'table_name',
364 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 365 'title' => ts('Table Name'),
e501603b
TO
366 'description' => 'Name of the table that holds the values for this group.',
367 'maxlength' => 255,
368 'size' => CRM_Utils_Type::HUGE,
522a26c9 369 'table_name' => 'civicrm_custom_group',
370 'entity' => 'CustomGroup',
371 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 372 'localizable' => 0,
c3fc2621
CW
373 ],
374 'is_multiple' => [
e501603b
TO
375 'name' => 'is_multiple',
376 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 377 'title' => ts('Supports Multiple Records'),
e501603b 378 'description' => 'Does this group hold multiple values?',
522a26c9 379 'table_name' => 'civicrm_custom_group',
380 'entity' => 'CustomGroup',
381 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 382 'localizable' => 0,
c3fc2621
CW
383 ],
384 'min_multiple' => [
e501603b
TO
385 'name' => 'min_multiple',
386 'type' => CRM_Utils_Type::T_INT,
c3fc2621 387 'title' => ts('Minimum Multiple Records'),
e501603b 388 'description' => 'minimum number of multiple records (typically 0?)',
522a26c9 389 'table_name' => 'civicrm_custom_group',
390 'entity' => 'CustomGroup',
391 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 392 'localizable' => 0,
c3fc2621
CW
393 ],
394 'max_multiple' => [
e501603b
TO
395 'name' => 'max_multiple',
396 'type' => CRM_Utils_Type::T_INT,
c3fc2621 397 'title' => ts('Maximum Multiple Records'),
e501603b 398 'description' => 'maximum number of multiple records, if 0 - no max',
522a26c9 399 'table_name' => 'civicrm_custom_group',
400 'entity' => 'CustomGroup',
401 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 402 'localizable' => 0,
c3fc2621
CW
403 ],
404 'collapse_adv_display' => [
e501603b
TO
405 'name' => 'collapse_adv_display',
406 'type' => CRM_Utils_Type::T_INT,
c3fc2621 407 'title' => ts('Collapse Group Display'),
e501603b 408 'description' => 'Will this group be in collapsed or expanded mode on advanced search display ?',
522a26c9 409 'table_name' => 'civicrm_custom_group',
410 'entity' => 'CustomGroup',
411 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 412 'localizable' => 0,
c3fc2621
CW
413 ],
414 'created_id' => [
e501603b
TO
415 'name' => 'created_id',
416 'type' => CRM_Utils_Type::T_INT,
c3fc2621 417 'title' => ts('Custom Group Created By'),
e501603b 418 'description' => 'FK to civicrm_contact, who created this custom group',
522a26c9 419 'table_name' => 'civicrm_custom_group',
420 'entity' => 'CustomGroup',
421 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 422 'localizable' => 0,
e501603b 423 'FKClassName' => 'CRM_Contact_DAO_Contact',
c3fc2621
CW
424 ],
425 'created_date' => [
e501603b
TO
426 'name' => 'created_date',
427 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
c3fc2621 428 'title' => ts('Custom Group Created Date'),
e501603b 429 'description' => 'Date and time this custom group was created.',
522a26c9 430 'table_name' => 'civicrm_custom_group',
431 'entity' => 'CustomGroup',
432 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 433 'localizable' => 0,
c3fc2621
CW
434 ],
435 'is_reserved' => [
e501603b
TO
436 'name' => 'is_reserved',
437 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 438 'title' => ts('Reserved Group?'),
e501603b 439 'description' => 'Is this a reserved Custom Group?',
522a26c9 440 'table_name' => 'civicrm_custom_group',
441 'entity' => 'CustomGroup',
442 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 443 'localizable' => 0,
c3fc2621
CW
444 ],
445 'is_public' => [
460931ca
JP
446 'name' => 'is_public',
447 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 448 'title' => ts('Custom Group Is Public?'),
460931ca
JP
449 'description' => 'Is this property public?',
450 'default' => '1',
451 'table_name' => 'civicrm_custom_group',
452 'entity' => 'CustomGroup',
453 'bao' => 'CRM_Core_BAO_CustomGroup',
454 'localizable' => 0,
c3fc2621
CW
455 ],
456 ];
346aaaba 457 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 458 }
346aaaba 459 return Civi::$statics[__CLASS__]['fields'];
e501603b 460 }
c3fc2621 461
e501603b 462 /**
bd8e0b14 463 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
464 *
465 * @return array
bd8e0b14 466 * Array(string $name => string $uniqueName).
e501603b 467 */
c3fc2621 468 public static function &fieldKeys() {
bd8e0b14
TO
469 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
470 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 471 }
bd8e0b14 472 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b 473 }
c3fc2621 474
e501603b
TO
475 /**
476 * Returns the names of this table
477 *
478 * @return string
479 */
c3fc2621 480 public static function getTableName() {
e501603b
TO
481 return CRM_Core_DAO::getLocaleTableName(self::$_tableName);
482 }
c3fc2621 483
e501603b
TO
484 /**
485 * Returns if this table needs to be logged
486 *
c3fc2621 487 * @return bool
e501603b 488 */
c3fc2621 489 public function getLog() {
e501603b
TO
490 return self::$_log;
491 }
c3fc2621 492
e501603b
TO
493 /**
494 * Returns the list of fields that can be imported
495 *
496 * @param bool $prefix
497 *
498 * @return array
499 */
c3fc2621
CW
500 public static function &import($prefix = FALSE) {
501 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'custom_group', $prefix, []);
60808919 502 return $r;
e501603b 503 }
c3fc2621 504
e501603b
TO
505 /**
506 * Returns the list of fields that can be exported
507 *
508 * @param bool $prefix
509 *
510 * @return array
511 */
c3fc2621
CW
512 public static function &export($prefix = FALSE) {
513 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'custom_group', $prefix, []);
60808919 514 return $r;
e501603b 515 }
c3fc2621 516
e7a6b91a
AS
517 /**
518 * Returns the list of indices
c3fc2621
CW
519 *
520 * @param bool $localize
521 *
522 * @return array
e7a6b91a
AS
523 */
524 public static function indices($localize = TRUE) {
c3fc2621
CW
525 $indices = [
526 'UI_title_extends' => [
e7a6b91a 527 'name' => 'UI_title_extends',
c3fc2621 528 'field' => [
e7a6b91a
AS
529 0 => 'title',
530 1 => 'extends',
c3fc2621
CW
531 ],
532 'localizable' => TRUE,
533 'unique' => TRUE,
e7a6b91a 534 'sig' => 'civicrm_custom_group::1::title::extends',
c3fc2621
CW
535 ],
536 'UI_name_extends' => [
e7a6b91a 537 'name' => 'UI_name_extends',
c3fc2621 538 'field' => [
e7a6b91a
AS
539 0 => 'name',
540 1 => 'extends',
c3fc2621
CW
541 ],
542 'localizable' => FALSE,
543 'unique' => TRUE,
e7a6b91a 544 'sig' => 'civicrm_custom_group::1::name::extends',
c3fc2621
CW
545 ],
546 ];
e7a6b91a
AS
547 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
548 }
c3fc2621 549
e501603b 550}