Merge pull request #13170 from elisseck/dev/core/485
[civicrm-core.git] / CRM / Core / DAO / OptionValue.php
CommitLineData
e501603b 1<?php
c3fc2621 2
e501603b
TO
3/**
4 * @package CRM
6b83d5bd 5 * @copyright CiviCRM LLC (c) 2004-2019
e501603b
TO
6 *
7 * Generated from xml/schema/CRM/Core/OptionValue.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
e380ee3b 9 * (GenCodeChecksum:356278f04173ed064fa82cacafa7edbe)
e501603b 10 */
c3fc2621 11
f41f0342 12/**
c3fc2621 13 * Database access object for the OptionValue entity.
f41f0342 14 */
e501603b 15class CRM_Core_DAO_OptionValue 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_option_value';
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 * Option ID
33 *
34 * @var int unsigned
35 */
36 public $id;
c3fc2621 37
e501603b
TO
38 /**
39 * Group which this option belongs to.
40 *
41 * @var int unsigned
42 */
43 public $option_group_id;
c3fc2621 44
e501603b
TO
45 /**
46 * Option string as displayed to users - e.g. the label in an HTML OPTION tag.
47 *
48 * @var string
49 */
50 public $label;
c3fc2621 51
e501603b
TO
52 /**
53 * The actual value stored (as a foreign key) in the data record. Functions which need lookup option_value.title should use civicrm_option_value.option_group_id plus civicrm_option_value.value as the key.
54 *
55 * @var string
56 */
57 public $value;
c3fc2621 58
e501603b
TO
59 /**
60 * Stores a fixed (non-translated) name for this option value. Lookup functions should use the name as the key for the option value row.
61 *
62 * @var string
63 */
64 public $name;
c3fc2621 65
e501603b
TO
66 /**
67 * Use to sort and/or set display properties for sub-set(s) of options within an option group. EXAMPLE: Use for college_interest field, to differentiate partners from non-partners.
68 *
69 * @var string
70 */
71 public $grouping;
c3fc2621 72
e501603b
TO
73 /**
74 * Bitwise logic can be used to create subsets of options within an option_group for different uses.
75 *
76 * @var int unsigned
77 */
78 public $filter;
c3fc2621 79
e501603b
TO
80 /**
81 * Is this the default option for the group?
82 *
83 * @var boolean
84 */
85 public $is_default;
c3fc2621 86
e501603b
TO
87 /**
88 * Controls display sort order.
89 *
90 * @var int unsigned
91 */
92 public $weight;
c3fc2621 93
e501603b
TO
94 /**
95 * Optional description.
96 *
97 * @var text
98 */
99 public $description;
c3fc2621 100
e501603b
TO
101 /**
102 * Is this row simply a display header? Expected usage is to render these as OPTGROUP tags within a SELECT field list of options?
103 *
104 * @var boolean
105 */
106 public $is_optgroup;
c3fc2621 107
e501603b
TO
108 /**
109 * Is this a predefined system object?
110 *
111 * @var boolean
112 */
113 public $is_reserved;
c3fc2621 114
e501603b
TO
115 /**
116 * Is this option active?
117 *
118 * @var boolean
119 */
120 public $is_active;
c3fc2621 121
e501603b
TO
122 /**
123 * Component that this option value belongs/caters to.
124 *
125 * @var int unsigned
126 */
127 public $component_id;
c3fc2621 128
e501603b
TO
129 /**
130 * Which Domain is this option value for
131 *
132 * @var int unsigned
133 */
134 public $domain_id;
c3fc2621 135
e501603b 136 /**
e501603b
TO
137 * @var int unsigned
138 */
139 public $visibility_id;
c3fc2621 140
b412f764
CW
141 /**
142 * crm-i icon class
143 *
144 * @var string
145 */
146 public $icon;
c3fc2621 147
d73974ac
CW
148 /**
149 * Hex color value e.g. #ffffff
150 *
151 * @var string
152 */
153 public $color;
c3fc2621 154
e501603b 155 /**
f41f0342 156 * Class constructor.
e501603b 157 */
c3fc2621 158 public function __construct() {
e501603b
TO
159 $this->__table = 'civicrm_option_value';
160 parent::__construct();
161 }
c3fc2621 162
e501603b 163 /**
f41f0342 164 * Returns foreign keys and entity references.
e501603b
TO
165 *
166 * @return array
167 * [CRM_Core_Reference_Interface]
168 */
c3fc2621 169 public static function getReferenceColumns() {
346aaaba
TO
170 if (!isset(Civi::$statics[__CLASS__]['links'])) {
171 Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
c3fc2621
CW
172 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'option_group_id', 'civicrm_option_group', 'id');
173 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'component_id', 'civicrm_component', 'id');
174 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'domain_id', 'civicrm_domain', 'id');
346aaaba 175 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 176 }
346aaaba 177 return Civi::$statics[__CLASS__]['links'];
e501603b 178 }
c3fc2621 179
e501603b
TO
180 /**
181 * Returns all the column names of this table
182 *
183 * @return array
184 */
c3fc2621 185 public static function &fields() {
346aaaba 186 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
c3fc2621
CW
187 Civi::$statics[__CLASS__]['fields'] = [
188 'id' => [
e501603b
TO
189 'name' => 'id',
190 'type' => CRM_Utils_Type::T_INT,
c3fc2621 191 'title' => ts('Option Value ID'),
215b423e 192 'description' => ts('Option ID'),
c3fc2621 193 'required' => TRUE,
522a26c9 194 'table_name' => 'civicrm_option_value',
195 'entity' => 'OptionValue',
196 'bao' => 'CRM_Core_BAO_OptionValue',
6a7e5e5d 197 'localizable' => 0,
c3fc2621
CW
198 ],
199 'option_group_id' => [
e501603b
TO
200 'name' => 'option_group_id',
201 'type' => CRM_Utils_Type::T_INT,
c3fc2621 202 'title' => ts('Option Group ID'),
215b423e 203 'description' => ts('Group which this option belongs to.'),
c3fc2621 204 'required' => TRUE,
522a26c9 205 'table_name' => 'civicrm_option_value',
206 'entity' => 'OptionValue',
207 'bao' => 'CRM_Core_BAO_OptionValue',
6a7e5e5d 208 'localizable' => 0,
e501603b 209 'FKClassName' => 'CRM_Core_DAO_OptionGroup',
c3fc2621 210 'html' => [
e501603b 211 'type' => 'Select',
c3fc2621
CW
212 ],
213 'pseudoconstant' => [
e501603b
TO
214 'table' => 'civicrm_option_group',
215 'keyColumn' => 'id',
216 'labelColumn' => 'name',
c3fc2621
CW
217 ]
218 ],
219 'label' => [
e501603b
TO
220 'name' => 'label',
221 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 222 'title' => ts('Option Label'),
215b423e 223 'description' => ts('Option string as displayed to users - e.g. the label in an HTML OPTION tag.'),
c3fc2621 224 'required' => TRUE,
e501603b
TO
225 'maxlength' => 512,
226 'size' => CRM_Utils_Type::HUGE,
522a26c9 227 'table_name' => 'civicrm_option_value',
228 'entity' => 'OptionValue',
229 'bao' => 'CRM_Core_BAO_OptionValue',
6a7e5e5d 230 'localizable' => 1,
c3fc2621
CW
231 ],
232 'value' => [
e501603b
TO
233 'name' => 'value',
234 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 235 'title' => ts('Option Value'),
215b423e 236 'description' => ts('The actual value stored (as a foreign key) in the data record. Functions which need lookup option_value.title should use civicrm_option_value.option_group_id plus civicrm_option_value.value as the key.'),
c3fc2621 237 'required' => TRUE,
e501603b
TO
238 'maxlength' => 512,
239 'size' => CRM_Utils_Type::HUGE,
522a26c9 240 'table_name' => 'civicrm_option_value',
241 'entity' => 'OptionValue',
242 'bao' => 'CRM_Core_BAO_OptionValue',
6a7e5e5d 243 'localizable' => 0,
c3fc2621
CW
244 ],
245 'name' => [
e501603b
TO
246 'name' => 'name',
247 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 248 'title' => ts('Option Name'),
215b423e 249 'description' => ts('Stores a fixed (non-translated) name for this option value. Lookup functions should use the name as the key for the option value row.'),
e501603b
TO
250 'maxlength' => 255,
251 'size' => CRM_Utils_Type::HUGE,
c3fc2621 252 'import' => TRUE,
e501603b
TO
253 'where' => 'civicrm_option_value.name',
254 'headerPattern' => '',
255 'dataPattern' => '',
c3fc2621 256 'export' => TRUE,
522a26c9 257 'table_name' => 'civicrm_option_value',
258 'entity' => 'OptionValue',
259 'bao' => 'CRM_Core_BAO_OptionValue',
6a7e5e5d 260 'localizable' => 0,
c3fc2621
CW
261 ],
262 'grouping' => [
e501603b
TO
263 'name' => 'grouping',
264 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 265 'title' => ts('Option Grouping Name'),
215b423e 266 'description' => ts('Use to sort and/or set display properties for sub-set(s) of options within an option group. EXAMPLE: Use for college_interest field, to differentiate partners from non-partners.'),
e501603b
TO
267 'maxlength' => 255,
268 'size' => CRM_Utils_Type::HUGE,
522a26c9 269 'table_name' => 'civicrm_option_value',
270 'entity' => 'OptionValue',
271 'bao' => 'CRM_Core_BAO_OptionValue',
6a7e5e5d 272 'localizable' => 0,
c3fc2621
CW
273 ],
274 'filter' => [
e501603b
TO
275 'name' => 'filter',
276 'type' => CRM_Utils_Type::T_INT,
c3fc2621 277 'title' => ts('Filter'),
215b423e 278 'description' => ts('Bitwise logic can be used to create subsets of options within an option_group for different uses.'),
522a26c9 279 'table_name' => 'civicrm_option_value',
280 'entity' => 'OptionValue',
281 'bao' => 'CRM_Core_BAO_OptionValue',
6a7e5e5d 282 'localizable' => 0,
c3fc2621
CW
283 ],
284 'is_default' => [
e501603b
TO
285 'name' => 'is_default',
286 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 287 'title' => ts('Option is Default?'),
215b423e 288 'description' => ts('Is this the default option for the group?'),
45a83e42 289 'default' => '0',
522a26c9 290 'table_name' => 'civicrm_option_value',
291 'entity' => 'OptionValue',
292 'bao' => 'CRM_Core_BAO_OptionValue',
6a7e5e5d 293 'localizable' => 0,
c3fc2621
CW
294 ],
295 'weight' => [
e501603b
TO
296 'name' => 'weight',
297 'type' => CRM_Utils_Type::T_INT,
c3fc2621 298 'title' => ts('Order'),
215b423e 299 'description' => ts('Controls display sort order.'),
c3fc2621 300 'required' => TRUE,
522a26c9 301 'table_name' => 'civicrm_option_value',
302 'entity' => 'OptionValue',
303 'bao' => 'CRM_Core_BAO_OptionValue',
6a7e5e5d 304 'localizable' => 0,
c3fc2621
CW
305 ],
306 'description' => [
e501603b
TO
307 'name' => 'description',
308 'type' => CRM_Utils_Type::T_TEXT,
c3fc2621 309 'title' => ts('Option Description'),
215b423e 310 'description' => ts('Optional description.'),
e501603b
TO
311 'rows' => 8,
312 'cols' => 60,
522a26c9 313 'table_name' => 'civicrm_option_value',
314 'entity' => 'OptionValue',
315 'bao' => 'CRM_Core_BAO_OptionValue',
6a7e5e5d 316 'localizable' => 1,
c3fc2621 317 'html' => [
e501603b 318 'type' => 'TextArea',
c3fc2621
CW
319 ],
320 ],
321 'is_optgroup' => [
e501603b
TO
322 'name' => 'is_optgroup',
323 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 324 'title' => ts('Option is Header?'),
215b423e 325 'description' => ts('Is this row simply a display header? Expected usage is to render these as OPTGROUP tags within a SELECT field list of options?'),
45a83e42 326 'default' => '0',
522a26c9 327 'table_name' => 'civicrm_option_value',
328 'entity' => 'OptionValue',
329 'bao' => 'CRM_Core_BAO_OptionValue',
6a7e5e5d 330 'localizable' => 0,
c3fc2621
CW
331 ],
332 'is_reserved' => [
e501603b
TO
333 'name' => 'is_reserved',
334 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 335 'title' => ts('Option Is Reserved?'),
215b423e 336 'description' => ts('Is this a predefined system object?'),
45a83e42 337 'default' => '0',
522a26c9 338 'table_name' => 'civicrm_option_value',
339 'entity' => 'OptionValue',
340 'bao' => 'CRM_Core_BAO_OptionValue',
6a7e5e5d 341 'localizable' => 0,
c3fc2621
CW
342 ],
343 'is_active' => [
e501603b
TO
344 'name' => 'is_active',
345 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 346 'title' => ts('Option Is Active'),
215b423e 347 'description' => ts('Is this option active?'),
e501603b 348 'default' => '1',
522a26c9 349 'table_name' => 'civicrm_option_value',
350 'entity' => 'OptionValue',
351 'bao' => 'CRM_Core_BAO_OptionValue',
6a7e5e5d 352 'localizable' => 0,
c3fc2621
CW
353 ],
354 'component_id' => [
e501603b
TO
355 'name' => 'component_id',
356 'type' => CRM_Utils_Type::T_INT,
c3fc2621 357 'title' => ts('Option Component'),
215b423e 358 'description' => ts('Component that this option value belongs/caters to.'),
522a26c9 359 'table_name' => 'civicrm_option_value',
360 'entity' => 'OptionValue',
361 'bao' => 'CRM_Core_BAO_OptionValue',
6a7e5e5d 362 'localizable' => 0,
e501603b 363 'FKClassName' => 'CRM_Core_DAO_Component',
c3fc2621 364 'html' => [
e501603b 365 'type' => 'Select',
c3fc2621
CW
366 ],
367 'pseudoconstant' => [
e501603b
TO
368 'table' => 'civicrm_component',
369 'keyColumn' => 'id',
370 'labelColumn' => 'name',
c3fc2621
CW
371 ]
372 ],
373 'domain_id' => [
e501603b
TO
374 'name' => 'domain_id',
375 'type' => CRM_Utils_Type::T_INT,
c3fc2621 376 'title' => ts('Option Domain'),
215b423e 377 'description' => ts('Which Domain is this option value for'),
522a26c9 378 'table_name' => 'civicrm_option_value',
379 'entity' => 'OptionValue',
380 'bao' => 'CRM_Core_BAO_OptionValue',
6a7e5e5d 381 'localizable' => 0,
e501603b 382 'FKClassName' => 'CRM_Core_DAO_Domain',
c3fc2621 383 'pseudoconstant' => [
e501603b
TO
384 'table' => 'civicrm_domain',
385 'keyColumn' => 'id',
386 'labelColumn' => 'name',
c3fc2621
CW
387 ]
388 ],
389 'visibility_id' => [
e501603b
TO
390 'name' => 'visibility_id',
391 'type' => CRM_Utils_Type::T_INT,
c3fc2621 392 'title' => ts('Option Visibility'),
e501603b 393 'default' => 'NULL',
522a26c9 394 'table_name' => 'civicrm_option_value',
395 'entity' => 'OptionValue',
396 'bao' => 'CRM_Core_BAO_OptionValue',
6a7e5e5d 397 'localizable' => 0,
e78e618d
PN
398 'pseudoconstant' => [
399 'optionGroupName' => 'visibility',
400 'optionEditPath' => 'civicrm/admin/options/visibility',
401 ]
c3fc2621
CW
402 ],
403 'icon' => [
b412f764
CW
404 'name' => 'icon',
405 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 406 'title' => ts('Icon'),
215b423e 407 'description' => ts('crm-i icon class'),
b412f764
CW
408 'maxlength' => 255,
409 'size' => CRM_Utils_Type::HUGE,
410 'default' => 'NULL',
522a26c9 411 'table_name' => 'civicrm_option_value',
412 'entity' => 'OptionValue',
413 'bao' => 'CRM_Core_BAO_OptionValue',
6a7e5e5d 414 'localizable' => 0,
c3fc2621
CW
415 ],
416 'color' => [
d73974ac
CW
417 'name' => 'color',
418 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 419 'title' => ts('Color'),
215b423e 420 'description' => ts('Hex color value e.g. #ffffff'),
d73974ac
CW
421 'maxlength' => 255,
422 'size' => CRM_Utils_Type::HUGE,
423 'default' => 'NULL',
522a26c9 424 'table_name' => 'civicrm_option_value',
425 'entity' => 'OptionValue',
426 'bao' => 'CRM_Core_BAO_OptionValue',
6a7e5e5d 427 'localizable' => 0,
c3fc2621
CW
428 ],
429 ];
346aaaba 430 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 431 }
346aaaba 432 return Civi::$statics[__CLASS__]['fields'];
e501603b 433 }
c3fc2621 434
e501603b 435 /**
bd8e0b14 436 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
437 *
438 * @return array
bd8e0b14 439 * Array(string $name => string $uniqueName).
e501603b 440 */
c3fc2621 441 public static function &fieldKeys() {
bd8e0b14
TO
442 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
443 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 444 }
bd8e0b14 445 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b 446 }
c3fc2621 447
e501603b
TO
448 /**
449 * Returns the names of this table
450 *
451 * @return string
452 */
c3fc2621 453 public static function getTableName() {
e501603b
TO
454 return CRM_Core_DAO::getLocaleTableName(self::$_tableName);
455 }
c3fc2621 456
e501603b
TO
457 /**
458 * Returns if this table needs to be logged
459 *
c3fc2621 460 * @return bool
e501603b 461 */
c3fc2621 462 public function getLog() {
e501603b
TO
463 return self::$_log;
464 }
c3fc2621 465
e501603b
TO
466 /**
467 * Returns the list of fields that can be imported
468 *
469 * @param bool $prefix
470 *
471 * @return array
472 */
c3fc2621
CW
473 public static function &import($prefix = FALSE) {
474 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'option_value', $prefix, []);
60808919 475 return $r;
e501603b 476 }
c3fc2621 477
e501603b
TO
478 /**
479 * Returns the list of fields that can be exported
480 *
481 * @param bool $prefix
482 *
483 * @return array
484 */
c3fc2621
CW
485 public static function &export($prefix = FALSE) {
486 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'option_value', $prefix, []);
60808919 487 return $r;
e501603b 488 }
c3fc2621 489
e7a6b91a
AS
490 /**
491 * Returns the list of indices
c3fc2621
CW
492 *
493 * @param bool $localize
494 *
495 * @return array
e7a6b91a
AS
496 */
497 public static function indices($localize = TRUE) {
c3fc2621
CW
498 $indices = [
499 'index_option_group_id_value' => [
e7a6b91a 500 'name' => 'index_option_group_id_value',
c3fc2621 501 'field' => [
e7a6b91a
AS
502 0 => 'value(128)',
503 1 => 'option_group_id',
c3fc2621
CW
504 ],
505 'localizable' => FALSE,
e7a6b91a 506 'sig' => 'civicrm_option_value::0::value(128)::option_group_id',
c3fc2621
CW
507 ],
508 'index_option_group_id_name' => [
e7a6b91a 509 'name' => 'index_option_group_id_name',
c3fc2621 510 'field' => [
e7a6b91a
AS
511 0 => 'name(128)',
512 1 => 'option_group_id',
c3fc2621
CW
513 ],
514 'localizable' => FALSE,
e7a6b91a 515 'sig' => 'civicrm_option_value::0::name(128)::option_group_id',
c3fc2621
CW
516 ],
517 ];
e7a6b91a
AS
518 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
519 }
c3fc2621 520
e501603b 521}