Delete entities in the reverse order that they were created
[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
110f4343 9 * (GenCodeChecksum:6b88842459aadee0598c08bd4d7518f2)
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,
233319bf 268 'html' => [
269 'type' => 'Select',
270 ],
271 'pseudoconstant' => [
272 'optionGroupName' => 'custom_data_type',
273 'optionEditPath' => 'civicrm/admin/options/custom_data_type',
274 ]
c3fc2621
CW
275 ],
276 'extends_entity_column_value' => [
e501603b
TO
277 'name' => 'extends_entity_column_value',
278 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 279 'title' => ts('Custom Group Subtype'),
e501603b
TO
280 'description' => 'linking custom group for dynamic object',
281 'maxlength' => 255,
282 'size' => CRM_Utils_Type::HUGE,
522a26c9 283 'table_name' => 'civicrm_custom_group',
284 'entity' => 'CustomGroup',
285 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 286 'localizable' => 0,
2a5c9b4d 287 'serialize' => self::SERIALIZE_SEPARATOR_BOOKEND,
c3fc2621
CW
288 ],
289 'style' => [
e501603b
TO
290 'name' => 'style',
291 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 292 'title' => ts('Custom Group Style'),
e501603b
TO
293 'description' => 'Visual relationship between this form and its parent.',
294 'maxlength' => 15,
295 'size' => CRM_Utils_Type::TWELVE,
522a26c9 296 'table_name' => 'civicrm_custom_group',
297 'entity' => 'CustomGroup',
298 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 299 'localizable' => 0,
c3fc2621 300 'html' => [
e501603b 301 'type' => 'Select',
c3fc2621
CW
302 ],
303 'pseudoconstant' => [
e501603b 304 'callback' => 'CRM_Core_SelectValues::customGroupStyle',
c3fc2621
CW
305 ]
306 ],
307 'collapse_display' => [
e501603b
TO
308 'name' => 'collapse_display',
309 'type' => CRM_Utils_Type::T_INT,
c3fc2621 310 'title' => ts('Collapse Custom Group?'),
e501603b 311 'description' => 'Will this group be in collapsed or expanded mode on initial display ?',
522a26c9 312 'table_name' => 'civicrm_custom_group',
313 'entity' => 'CustomGroup',
314 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 315 'localizable' => 0,
c3fc2621
CW
316 ],
317 'help_pre' => [
e501603b
TO
318 'name' => 'help_pre',
319 'type' => CRM_Utils_Type::T_TEXT,
c3fc2621 320 'title' => ts('Custom Group Pre Text'),
e501603b
TO
321 'description' => 'Description and/or help text to display before fields in form.',
322 'rows' => 4,
323 'cols' => 80,
522a26c9 324 'table_name' => 'civicrm_custom_group',
325 'entity' => 'CustomGroup',
326 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 327 'localizable' => 1,
c3fc2621 328 'html' => [
e501603b 329 'type' => 'TextArea',
c3fc2621
CW
330 ],
331 ],
332 'help_post' => [
e501603b
TO
333 'name' => 'help_post',
334 'type' => CRM_Utils_Type::T_TEXT,
c3fc2621 335 'title' => ts('Custom Group Post Text'),
e501603b
TO
336 'description' => 'Description and/or help text to display after fields in form.',
337 'rows' => 4,
338 'cols' => 80,
522a26c9 339 'table_name' => 'civicrm_custom_group',
340 'entity' => 'CustomGroup',
341 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 342 'localizable' => 1,
c3fc2621 343 'html' => [
e501603b 344 'type' => 'TextArea',
c3fc2621
CW
345 ],
346 ],
347 'weight' => [
e501603b
TO
348 'name' => 'weight',
349 'type' => CRM_Utils_Type::T_INT,
c3fc2621 350 'title' => ts('Order'),
e501603b 351 'description' => 'Controls display order when multiple extended property groups are setup for the same class.',
c3fc2621 352 'required' => TRUE,
e501603b 353 'default' => '1',
522a26c9 354 'table_name' => 'civicrm_custom_group',
355 'entity' => 'CustomGroup',
356 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 357 'localizable' => 0,
c3fc2621
CW
358 ],
359 'is_active' => [
e501603b
TO
360 'name' => 'is_active',
361 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 362 'title' => ts('Custom Group Is Active?'),
e501603b 363 'description' => 'Is this property active?',
110f4343 364 'default' => '1',
522a26c9 365 'table_name' => 'civicrm_custom_group',
366 'entity' => 'CustomGroup',
367 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 368 'localizable' => 0,
c3fc2621
CW
369 ],
370 'table_name' => [
e501603b
TO
371 'name' => 'table_name',
372 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 373 'title' => ts('Table Name'),
e501603b
TO
374 'description' => 'Name of the table that holds the values for this group.',
375 'maxlength' => 255,
376 'size' => CRM_Utils_Type::HUGE,
522a26c9 377 'table_name' => 'civicrm_custom_group',
378 'entity' => 'CustomGroup',
379 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 380 'localizable' => 0,
c3fc2621
CW
381 ],
382 'is_multiple' => [
e501603b
TO
383 'name' => 'is_multiple',
384 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 385 'title' => ts('Supports Multiple Records'),
e501603b 386 'description' => 'Does this group hold multiple values?',
522a26c9 387 'table_name' => 'civicrm_custom_group',
388 'entity' => 'CustomGroup',
389 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 390 'localizable' => 0,
c3fc2621
CW
391 ],
392 'min_multiple' => [
e501603b
TO
393 'name' => 'min_multiple',
394 'type' => CRM_Utils_Type::T_INT,
c3fc2621 395 'title' => ts('Minimum Multiple Records'),
e501603b 396 'description' => 'minimum number of multiple records (typically 0?)',
522a26c9 397 'table_name' => 'civicrm_custom_group',
398 'entity' => 'CustomGroup',
399 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 400 'localizable' => 0,
c3fc2621
CW
401 ],
402 'max_multiple' => [
e501603b
TO
403 'name' => 'max_multiple',
404 'type' => CRM_Utils_Type::T_INT,
c3fc2621 405 'title' => ts('Maximum Multiple Records'),
e501603b 406 'description' => 'maximum number of multiple records, if 0 - no max',
522a26c9 407 'table_name' => 'civicrm_custom_group',
408 'entity' => 'CustomGroup',
409 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 410 'localizable' => 0,
c3fc2621
CW
411 ],
412 'collapse_adv_display' => [
e501603b
TO
413 'name' => 'collapse_adv_display',
414 'type' => CRM_Utils_Type::T_INT,
c3fc2621 415 'title' => ts('Collapse Group Display'),
e501603b 416 'description' => 'Will this group be in collapsed or expanded mode on advanced search display ?',
522a26c9 417 'table_name' => 'civicrm_custom_group',
418 'entity' => 'CustomGroup',
419 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 420 'localizable' => 0,
c3fc2621
CW
421 ],
422 'created_id' => [
e501603b
TO
423 'name' => 'created_id',
424 'type' => CRM_Utils_Type::T_INT,
c3fc2621 425 'title' => ts('Custom Group Created By'),
e501603b 426 'description' => 'FK to civicrm_contact, who created this custom group',
522a26c9 427 'table_name' => 'civicrm_custom_group',
428 'entity' => 'CustomGroup',
429 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 430 'localizable' => 0,
e501603b 431 'FKClassName' => 'CRM_Contact_DAO_Contact',
c3fc2621
CW
432 ],
433 'created_date' => [
e501603b
TO
434 'name' => 'created_date',
435 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
c3fc2621 436 'title' => ts('Custom Group Created Date'),
e501603b 437 'description' => 'Date and time this custom group was created.',
522a26c9 438 'table_name' => 'civicrm_custom_group',
439 'entity' => 'CustomGroup',
440 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 441 'localizable' => 0,
c3fc2621
CW
442 ],
443 'is_reserved' => [
e501603b
TO
444 'name' => 'is_reserved',
445 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 446 'title' => ts('Reserved Group?'),
e501603b 447 'description' => 'Is this a reserved Custom Group?',
522a26c9 448 'table_name' => 'civicrm_custom_group',
449 'entity' => 'CustomGroup',
450 'bao' => 'CRM_Core_BAO_CustomGroup',
6a7e5e5d 451 'localizable' => 0,
c3fc2621
CW
452 ],
453 'is_public' => [
460931ca
JP
454 'name' => 'is_public',
455 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 456 'title' => ts('Custom Group Is Public?'),
460931ca
JP
457 'description' => 'Is this property public?',
458 'default' => '1',
459 'table_name' => 'civicrm_custom_group',
460 'entity' => 'CustomGroup',
461 'bao' => 'CRM_Core_BAO_CustomGroup',
462 'localizable' => 0,
c3fc2621
CW
463 ],
464 ];
346aaaba 465 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 466 }
346aaaba 467 return Civi::$statics[__CLASS__]['fields'];
e501603b 468 }
c3fc2621 469
e501603b 470 /**
bd8e0b14 471 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
472 *
473 * @return array
bd8e0b14 474 * Array(string $name => string $uniqueName).
e501603b 475 */
c3fc2621 476 public static function &fieldKeys() {
bd8e0b14
TO
477 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
478 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 479 }
bd8e0b14 480 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b 481 }
c3fc2621 482
e501603b
TO
483 /**
484 * Returns the names of this table
485 *
486 * @return string
487 */
c3fc2621 488 public static function getTableName() {
e501603b
TO
489 return CRM_Core_DAO::getLocaleTableName(self::$_tableName);
490 }
c3fc2621 491
e501603b
TO
492 /**
493 * Returns if this table needs to be logged
494 *
c3fc2621 495 * @return bool
e501603b 496 */
c3fc2621 497 public function getLog() {
e501603b
TO
498 return self::$_log;
499 }
c3fc2621 500
e501603b
TO
501 /**
502 * Returns the list of fields that can be imported
503 *
504 * @param bool $prefix
505 *
506 * @return array
507 */
c3fc2621
CW
508 public static function &import($prefix = FALSE) {
509 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'custom_group', $prefix, []);
60808919 510 return $r;
e501603b 511 }
c3fc2621 512
e501603b
TO
513 /**
514 * Returns the list of fields that can be exported
515 *
516 * @param bool $prefix
517 *
518 * @return array
519 */
c3fc2621
CW
520 public static function &export($prefix = FALSE) {
521 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'custom_group', $prefix, []);
60808919 522 return $r;
e501603b 523 }
c3fc2621 524
e7a6b91a
AS
525 /**
526 * Returns the list of indices
c3fc2621
CW
527 *
528 * @param bool $localize
529 *
530 * @return array
e7a6b91a
AS
531 */
532 public static function indices($localize = TRUE) {
c3fc2621
CW
533 $indices = [
534 'UI_title_extends' => [
e7a6b91a 535 'name' => 'UI_title_extends',
c3fc2621 536 'field' => [
e7a6b91a
AS
537 0 => 'title',
538 1 => 'extends',
c3fc2621
CW
539 ],
540 'localizable' => TRUE,
541 'unique' => TRUE,
e7a6b91a 542 'sig' => 'civicrm_custom_group::1::title::extends',
c3fc2621
CW
543 ],
544 'UI_name_extends' => [
e7a6b91a 545 'name' => 'UI_name_extends',
c3fc2621 546 'field' => [
e7a6b91a
AS
547 0 => 'name',
548 1 => 'extends',
c3fc2621
CW
549 ],
550 'localizable' => FALSE,
551 'unique' => TRUE,
e7a6b91a 552 'sig' => 'civicrm_custom_group::1::name::extends',
c3fc2621
CW
553 ],
554 ];
e7a6b91a
AS
555 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
556 }
c3fc2621 557
e501603b 558}