Event Cart: honor the allow_same_participant_emails setting
[civicrm-core.git] / CRM / Core / OptionGroup.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 */
33class CRM_Core_OptionGroup {
518fa0ee
SL
34 public static $_values = [];
35 public static $_cache = [];
6a488035 36
d424ffde 37 /**
6a488035
TO
38 * $_domainIDGroups array maintains the list of option groups for whom
39 * domainID is to be considered.
518fa0ee 40 * @var array
6a488035 41 */
518fa0ee 42 public static $_domainIDGroups = [
6a488035
TO
43 'from_email_address',
44 'grant_type',
be2fb01f 45 ];
6a488035 46
a0ee3941 47 /**
c490a46a 48 * @param CRM_Core_DAO $dao
a0ee3941
EM
49 * @param bool $flip
50 * @param bool $grouping
51 * @param bool $localize
52 * @param string $valueColumnName
53 *
54 * @return array
55 */
2da40d21 56 public static function &valuesCommon(
6a488035
TO
57 $dao, $flip = FALSE, $grouping = FALSE,
58 $localize = FALSE, $valueColumnName = 'label'
59 ) {
be2fb01f 60 self::$_values = [];
6a488035
TO
61
62 while ($dao->fetch()) {
63 if ($flip) {
64 if ($grouping) {
65 self::$_values[$dao->value] = $dao->grouping;
66 }
67 else {
68 self::$_values[$dao->{$valueColumnName}] = $dao->value;
69 }
70 }
71 else {
72 if ($grouping) {
73 self::$_values[$dao->{$valueColumnName}] = $dao->grouping;
74 }
75 else {
76 self::$_values[$dao->value] = $dao->{$valueColumnName};
77 }
78 }
79 }
80 if ($localize) {
81 $i18n = CRM_Core_I18n::singleton();
82 $i18n->localizeArray(self::$_values);
83 }
84 return self::$_values;
85 }
86
87 /**
88 * This function retrieves all the values for the specific option group by name
89 * this is primarily used to create various html based form elements
90 * (radio, select, checkbox etc). OptionGroups for most cases have the
b44e3f84 91 * 'label' in the label column and the 'id' or 'name' in the value column
6a488035 92 *
5a4f6742
CW
93 * @param string $name
94 * name of the option group.
95 * @param bool $flip
96 * results are return in id => label format if false.
6a488035 97 * if true, the results are reversed
5a4f6742
CW
98 * @param bool $grouping
99 * if true, return the value in 'grouping' column.
100 * @param bool $localize
101 * if true, localize the results before returning.
102 * @param string $condition
103 * add another condition to the sql query.
104 * @param string $labelColumnName
105 * the column to use for 'label'.
106 * @param bool $onlyActive
107 * return only the action option values.
108 * @param bool $fresh
109 * ignore cache entries and go back to DB.
110 * @param string $keyColumnName
111 * the column to use for 'key'.
bf48aa29 112 * @param string $orderBy
03ba3ef1 113 * the column to use for ordering.
6a488035 114 *
a6c01b45 115 * @return array
bf48aa29 116 * The values as specified by the params
6a488035 117 */
2da40d21 118 public static function &values(
6a488035
TO
119 $name, $flip = FALSE, $grouping = FALSE,
120 $localize = FALSE, $condition = NULL,
148136ae
PN
121 $labelColumnName = 'label', $onlyActive = TRUE, $fresh = FALSE, $keyColumnName = 'value',
122 $orderBy = 'weight'
6a488035 123 ) {
be80e977 124 $cache = CRM_Utils_Cache::singleton();
370d56eb 125 $cacheKey = self::createCacheKey($name, $flip, $grouping, $localize, $condition, $labelColumnName, $onlyActive, $keyColumnName, $orderBy);
6a488035 126
c0c9cd82
CW
127 if (!$fresh) {
128 // Fetch from static var
129 if (array_key_exists($cacheKey, self::$_cache)) {
130 return self::$_cache[$cacheKey];
131 }
132 // Fetch from main cache
e2ba3ae8 133 self::$_cache[$cacheKey] = $cache->get($cacheKey);
134 if (self::$_cache[$cacheKey] !== NULL) {
135 return self::$_cache[$cacheKey];
c0c9cd82 136 }
6a488035
TO
137 }
138
139 $query = "
c0c9cd82 140SELECT v.{$labelColumnName} as {$labelColumnName} ,v.{$keyColumnName} as value, v.grouping as grouping
6a488035
TO
141FROM civicrm_option_value v,
142 civicrm_option_group g
143WHERE v.option_group_id = g.id
144 AND g.name = %1
145 AND g.is_active = 1 ";
146
147 if ($onlyActive) {
148 $query .= " AND v.is_active = 1 ";
98d41b7d
CW
149 // Only show options for enabled components
150 $componentClause = ' v.component_id IS NULL ';
151 $enabledComponents = CRM_Core_Config::singleton()->enableComponents;
152 if ($enabledComponents) {
153 $enabledComponents = '"' . implode('","', $enabledComponents) . '"';
154 $componentClause .= " OR v.component_id IN (SELECT id FROM civicrm_component WHERE name IN ($enabledComponents)) ";
155 }
156 $query .= " AND ($componentClause) ";
6a488035
TO
157 }
158 if (in_array($name, self::$_domainIDGroups)) {
159 $query .= " AND v.domain_id = " . CRM_Core_Config::domainID();
160 }
161
162 if ($condition) {
163 $query .= $condition;
164 }
165
148136ae 166 $query .= " ORDER BY v.{$orderBy}";
6a488035 167
be2fb01f 168 $p = [1 => [$name, 'String']];
6a488035
TO
169 $dao = CRM_Core_DAO::executeQuery($query, $p);
170
171 $var = self::valuesCommon($dao, $flip, $grouping, $localize, $labelColumnName);
172
173 // call option value hook
174 CRM_Utils_Hook::optionValues($var, $name);
175
176 self::$_cache[$cacheKey] = $var;
177 $cache->set($cacheKey, $var);
178
179 return $var;
180 }
181
182 /**
183 * Counterpart to values() which removes the item from the cache
184 *
100fef9d 185 * @param string $name
6a488035
TO
186 * @param $flip
187 * @param $grouping
188 * @param $localize
189 * @param $condition
100fef9d 190 * @param string $labelColumnName
6a488035 191 * @param $onlyActive
da6b46f4 192 * @param string $keyColumnName
6a488035 193 */
c0c9cd82
CW
194 protected static function flushValues($name, $flip, $grouping, $localize, $condition, $labelColumnName, $onlyActive, $keyColumnName = 'value') {
195 $cacheKey = self::createCacheKey($name, $flip, $grouping, $localize, $condition, $labelColumnName, $onlyActive, $keyColumnName);
6a488035
TO
196 $cache = CRM_Utils_Cache::singleton();
197 $cache->delete($cacheKey);
198 unset(self::$_cache[$cacheKey]);
199 }
200
a0ee3941
EM
201 /**
202 * @return string
203 */
9647286d
TO
204 protected static function createCacheKey($id) {
205 $cacheKey = "CRM_OG_" . preg_replace('/[^a-zA-Z0-9]/', '', $id) . '_' . md5(serialize(func_get_args()));
6a488035
TO
206 return $cacheKey;
207 }
208
209 /**
fe482240 210 * This function retrieves all the values for the specific option group by id.
6a488035
TO
211 * this is primarily used to create various html based form elements
212 * (radio, select, checkbox etc). OptionGroups for most cases have the
b44e3f84 213 * 'label' in the label column and the 'id' or 'name' in the value column
6a488035 214 *
5a4f6742
CW
215 * @param int $id
216 * id of the option group.
217 * @param bool $flip
218 * results are return in id => label format if false.
219 * if true, the results are reversed
220 * @param bool $grouping
221 * if true, return the value in 'grouping' column.
222 * @param bool $localize
223 * if true, localize the results before returning.
224 * @param string $labelColumnName
225 * the column to use for 'label'.
da6b46f4
EM
226 * @param bool $onlyActive
227 * @param bool $fresh
228 *
a6c01b45 229 * @return array
16b10e64 230 * Array of values as specified by the above params
6a488035
TO
231 * @void
232 */
00be9182 233 public static function &valuesByID($id, $flip = FALSE, $grouping = FALSE, $localize = FALSE, $labelColumnName = 'label', $onlyActive = TRUE, $fresh = FALSE) {
786ad6e1 234 $cacheKey = self::createCacheKey($id, $flip, $grouping, $localize, $labelColumnName, $onlyActive);
6a488035
TO
235
236 $cache = CRM_Utils_Cache::singleton();
786ad6e1 237 if (!$fresh) {
86c265cf 238 self::$_cache[$cacheKey] = $cache->get($cacheKey);
239 if (self::$_cache[$cacheKey] !== NULL) {
240 return self::$_cache[$cacheKey];
786ad6e1 241 }
6a488035
TO
242 }
243 $query = "
244SELECT v.{$labelColumnName} as {$labelColumnName} ,v.value as value, v.grouping as grouping
245FROM civicrm_option_value v,
246 civicrm_option_group g
247WHERE v.option_group_id = g.id
248 AND g.id = %1
6a488035 249 AND g.is_active = 1
6a488035 250";
786ad6e1
CW
251 if ($onlyActive) {
252 $query .= " AND v.is_active = 1 ";
253 }
254 $query .= " ORDER BY v.weight, v.label";
255
be2fb01f 256 $p = [1 => [$id, 'Integer']];
6a488035
TO
257 $dao = CRM_Core_DAO::executeQuery($query, $p);
258
259 $var = self::valuesCommon($dao, $flip, $grouping, $localize, $labelColumnName);
260 $cache->set($cacheKey, $var);
261
262 return $var;
263 }
264
265 /**
59cba00c
J
266 * Lookup titles OR ids for a set of option_value populated fields. The
267 * retrieved value is assigned a new field name by id or id's by title
268 * (each within a specified option_group).
6a488035 269 *
6a0b768e
TO
270 * @param array $params
271 * Reference array of values submitted by the form. Based on.
5a4f6742
CW
272 * $flip, creates new elements in $params for each field in
273 * the $names array.
274 * If $flip = false, adds root field name => title
275 * If $flip = true, adds actual field name => id
6a488035 276 *
6a0b768e 277 * @param array $names
59cba00c 278 * Array of field names we want transformed.
5a4f6742
CW
279 * Array key = 'postName' (field name submitted by form in $params).
280 * Array value = array('newName' => $newName, 'groupName' => $groupName).
6a488035 281 *
2aa397bc 282 * @param bool $flip
6a488035 283 */
f2e3129e 284 public static function lookupValues(&$params, $names, $flip = FALSE) {
6a488035
TO
285 foreach ($names as $postName => $value) {
286 // See if $params field is in $names array (i.e. is a value that we need to lookup)
287 if ($postalName = CRM_Utils_Array::value($postName, $params)) {
be2fb01f 288 $postValues = [];
6a488035
TO
289 // params[$postName] may be a Ctrl+A separated value list
290 if (is_string($postalName) &&
291 strpos($postalName, CRM_Core_DAO::VALUE_SEPARATOR) == FALSE
292 ) {
293 // eliminate the ^A frm the beginning and end if present
294 if (substr($postalName, 0, 1) == CRM_Core_DAO::VALUE_SEPARATOR) {
295 $params[$postName] = substr($params[$postName], 1, -1);
296 }
297 $postValues = explode(CRM_Core_DAO::VALUE_SEPARATOR, $params[$postName]);
298 }
299 elseif (is_array($postalName)) {
300 $postValues = $postalName;
301 }
be2fb01f 302 $newValue = [];
6a488035
TO
303 foreach ($postValues as $postValue) {
304 if (!$postValue) {
305 continue;
306 }
307
308 if ($flip) {
be2fb01f 309 $p = [1 => [$postValue, 'String']];
6a488035 310 $lookupBy = 'v.label= %1';
353ffa53 311 $select = "v.value";
6a488035
TO
312 }
313 else {
be2fb01f 314 $p = [1 => [$postValue, 'Integer']];
6a488035 315 $lookupBy = 'v.value = %1';
353ffa53 316 $select = "v.label";
6a488035
TO
317 }
318
be2fb01f 319 $p[2] = [$value['groupName'], 'String'];
6a488035
TO
320 $query = "
321 SELECT $select
322 FROM civicrm_option_value v,
323 civicrm_option_group g
324 WHERE v.option_group_id = g.id
325 AND g.name = %2
326 AND $lookupBy";
327
328 $newValue[] = CRM_Core_DAO::singleValueQuery($query, $p);
329 $newValue = str_replace(',', '_', $newValue);
330 }
331 $params[$value['newName']] = implode(', ', $newValue);
332 }
333 }
334 }
335
a0ee3941 336 /**
d6f7dc03 337 * @deprecated - use CRM_Core_Pseudoconstant::getLabel
338 *
100fef9d 339 * @param string $groupName
a0ee3941
EM
340 * @param $value
341 * @param bool $onlyActiveValue
342 *
343 * @return null
344 */
00be9182 345 public static function getLabel($groupName, $value, $onlyActiveValue = TRUE) {
496320c3 346 CRM_Core_Error::deprecatedFunctionWarning('CRM_Core_PseudoConstant::getLabel');
6a488035
TO
347 if (empty($groupName) ||
348 empty($value)
349 ) {
350 return NULL;
351 }
352
353 $query = "
354SELECT v.label as label ,v.value as value
355FROM civicrm_option_value v,
356 civicrm_option_group g
357WHERE v.option_group_id = g.id
358 AND g.name = %1
359 AND g.is_active = 1
360 AND v.value = %2
361";
362 if ($onlyActiveValue) {
363 $query .= " AND v.is_active = 1 ";
364 }
be2fb01f
CW
365 $p = [
366 1 => [$groupName, 'String'],
367 2 => [$value, 'Integer'],
368 ];
6a488035
TO
369 $dao = CRM_Core_DAO::executeQuery($query, $p);
370 if ($dao->fetch()) {
371 return $dao->label;
372 }
373 return NULL;
374 }
375
a0ee3941 376 /**
76c28c8d
DG
377 * @deprecated
378 *
379 * This function is not cached.
380 *
100fef9d 381 * @param string $groupName
a0ee3941
EM
382 * @param $label
383 * @param string $labelField
384 * @param string $labelType
385 * @param string $valueField
386 *
387 * @return null
388 */
2da40d21 389 public static function getValue(
f9f40af3 390 $groupName,
6a488035
TO
391 $label,
392 $labelField = 'label',
2aa397bc 393 $labelType = 'String',
6a488035
TO
394 $valueField = 'value'
395 ) {
396 if (empty($label)) {
397 return NULL;
398 }
399
496320c3 400 CRM_Core_Error::deprecatedFunctionWarning('CRM_Core_PseudoConstant::getKey');
6a59e510 401
6a488035
TO
402 $query = "
403SELECT v.label as label ,v.{$valueField} as value
404FROM civicrm_option_value v,
405 civicrm_option_group g
406WHERE v.option_group_id = g.id
407 AND g.name = %1
408 AND v.is_active = 1
409 AND g.is_active = 1
410 AND v.$labelField = %2
411";
412
be2fb01f
CW
413 $p = [
414 1 => [$groupName, 'String'],
415 2 => [$label, $labelType],
416 ];
6a488035
TO
417 $dao = CRM_Core_DAO::executeQuery($query, $p);
418 if ($dao->fetch()) {
419 $dao->free();
420 return $dao->value;
421 }
422 $dao->free();
423 return NULL;
424 }
425
343d84fa
DG
426 /**
427 * Get option_value.value from default option_value row for an option group
428 *
6a0b768e
TO
429 * @param string $groupName
430 * The name of the option group.
343d84fa 431 *
343d84fa 432 *
a6c01b45
CW
433 * @return string
434 * the value from the row where is_default = true
8ef12e64 435 */
00be9182 436 public static function getDefaultValue($groupName) {
343d84fa
DG
437 if (empty($groupName)) {
438 return NULL;
439 }
440 $query = "
441SELECT v.value
442FROM civicrm_option_value v,
443 civicrm_option_group g
444WHERE v.option_group_id = g.id
445 AND g.name = %1
446 AND v.is_active = 1
447 AND g.is_active = 1
448 AND v.is_default = 1
449";
450 if (in_array($groupName, self::$_domainIDGroups)) {
451 $query .= " AND v.domain_id = " . CRM_Core_Config::domainID();
452 }
453
be2fb01f 454 $p = [1 => [$groupName, 'String']];
343d84fa
DG
455 return CRM_Core_DAO::singleValueQuery($query, $p);
456 }
8ef12e64 457
6a488035 458 /**
d09edf64 459 * Creates a new option group with the passed in values.
6a488035
TO
460 * @TODO: Should update the group if it already exists intelligently, so multi-lingual is
461 * not messed up. Currently deletes the old group
462 *
6a0b768e
TO
463 * @param string $groupName
464 * The name of the option group - make sure there is no conflict.
465 * @param array $values
466 * The associative array that has information on the option values.
6a488035
TO
467 * the keys of this array are:
468 * string 'title' (required)
469 * string 'value' (required)
470 * string 'name' (optional)
471 * string 'description' (optional)
472 * int 'weight' (optional) - the order in which the value are displayed
473 * bool 'is_default' (optional) - is this the default one to display when rendered in form
474 * bool 'is_active' (optional) - should this element be rendered
6a0b768e
TO
475 * @param int $defaultID
476 * (reference) - the option value ID of the default element (if set) is returned else 'null'.
477 * @param null $groupTitle
478 * The optional label of the option group else set to group name.
6a488035 479 *
6a488035 480 *
a6c01b45
CW
481 * @return int
482 * the option group ID
6a488035 483 */
00be9182 484 public static function createAssoc($groupName, &$values, &$defaultID, $groupTitle = NULL) {
6a488035
TO
485 self::deleteAssoc($groupName);
486 if (!empty($values)) {
353ffa53
TO
487 $group = new CRM_Core_DAO_OptionGroup();
488 $group->name = $groupName;
489 $group->title = empty($groupTitle) ? $groupName : $groupTitle;
6a488035 490 $group->is_reserved = 1;
353ffa53 491 $group->is_active = 1;
6a488035
TO
492 $group->save();
493
494 foreach ($values as $v) {
495 $value = new CRM_Core_DAO_OptionValue();
496 $value->option_group_id = $group->id;
497 $value->label = $v['label'];
498 $value->value = $v['value'];
499 $value->name = CRM_Utils_Array::value('name', $v);
500 $value->description = CRM_Utils_Array::value('description', $v);
501 $value->weight = CRM_Utils_Array::value('weight', $v);
502 $value->is_default = CRM_Utils_Array::value('is_default', $v);
503 $value->is_active = CRM_Utils_Array::value('is_active', $v);
504 $value->save();
505
506 if ($value->is_default) {
507 $defaultID = $value->id;
508 }
509 }
510 }
511 else {
512 return $defaultID = 'null';
513 }
514
515 return $group->id;
516 }
517
a0ee3941 518 /**
100fef9d 519 * @param string $groupName
a0ee3941
EM
520 * @param $values
521 * @param bool $flip
522 * @param string $field
523 */
00be9182 524 public static function getAssoc($groupName, &$values, $flip = FALSE, $field = 'name') {
6a488035
TO
525 $query = "
526SELECT v.id as amount_id, v.value, v.label, v.name, v.description, v.weight
527 FROM civicrm_option_group g,
528 civicrm_option_value v
529 WHERE g.id = v.option_group_id
530 AND g.$field = %1
531ORDER BY v.weight
532";
be2fb01f 533 $params = [1 => [$groupName, 'String']];
6a488035
TO
534 $dao = CRM_Core_DAO::executeQuery($query, $params);
535
be2fb01f 536 $fields = ['value', 'label', 'name', 'description', 'amount_id', 'weight'];
6a488035 537 if ($flip) {
be2fb01f 538 $values = [];
6a488035
TO
539 }
540 else {
541 foreach ($fields as $field) {
be2fb01f 542 $values[$field] = [];
6a488035
TO
543 }
544 }
545 $index = 1;
546
547 while ($dao->fetch()) {
548 if ($flip) {
be2fb01f 549 $value = [];
6a488035
TO
550 foreach ($fields as $field) {
551 $value[$field] = $dao->$field;
552 }
553 $values[$dao->amount_id] = $value;
554 }
555 else {
556 foreach ($fields as $field) {
557 $values[$field][$index] = $dao->$field;
558 }
559 $index++;
560 }
561 }
562 }
563
a0ee3941 564 /**
100fef9d 565 * @param string $groupName
a0ee3941
EM
566 * @param string $operator
567 */
00be9182 568 public static function deleteAssoc($groupName, $operator = "=") {
6a488035
TO
569 $query = "
570DELETE g, v
571 FROM civicrm_option_group g,
572 civicrm_option_value v
573 WHERE g.id = v.option_group_id
574 AND g.name {$operator} %1";
575
be2fb01f 576 $params = [1 => [$groupName, 'String']];
6a488035
TO
577
578 $dao = CRM_Core_DAO::executeQuery($query, $params);
579 }
580
a0ee3941 581 /**
100fef9d 582 * @param string $groupName
a0ee3941
EM
583 * @param $fieldValue
584 * @param string $field
585 * @param string $fieldType
586 * @param bool $active
bc3364a9
ML
587 * @param bool $localize
588 * if true, localize the results before returning.
a0ee3941
EM
589 *
590 * @return array
591 */
2da40d21 592 public static function getRowValues(
f9f40af3 593 $groupName, $fieldValue, $field = 'name',
bc3364a9 594 $fieldType = 'String', $active = TRUE, $localize = FALSE
6a488035
TO
595 ) {
596 $query = "
597SELECT v.id, v.label, v.value, v.name, v.weight, v.description
598FROM civicrm_option_value v,
599 civicrm_option_group g
600WHERE v.option_group_id = g.id
601 AND g.name = %1
602 AND g.is_active = 1
603 AND v.$field = %2
604";
605
606 if ($active) {
607 $query .= " AND v.is_active = 1";
608 }
609
be2fb01f
CW
610 $p = [
611 1 => [$groupName, 'String'],
612 2 => [$fieldValue, $fieldType],
613 ];
6a488035 614 $dao = CRM_Core_DAO::executeQuery($query, $p);
be2fb01f 615 $row = [];
6a488035
TO
616
617 if ($dao->fetch()) {
be2fb01f 618 foreach ([
518fa0ee
SL
619 'id',
620 'name',
621 'value',
622 'label',
623 'weight',
624 'description',
625 ] as $fld) {
6a488035 626 $row[$fld] = $dao->$fld;
be2fb01f 627 if ($localize && in_array($fld, ['label', 'description'])) {
03c70eeb 628 $row[$fld] = ts($row[$fld]);
629 }
bc3364a9
ML
630 }
631 }
632
6a488035
TO
633 return $row;
634 }
635
d424ffde 636 /**
d09edf64 637 * Wrapper for calling values with fresh set to true to empty the given value.
6a488035
TO
638 *
639 * Since there appears to be some inconsistency
640 * (@todo remove inconsistency) around the pseudoconstant operations
641 * (for example CRM_Contribution_Pseudoconstant::paymentInstrument doesn't specify isActive
642 * which is part of the cache key
643 * will do a couple of variations & aspire to someone cleaning it up later
d424ffde
CW
644 *
645 * @param string $name
a0ee3941
EM
646 * @param array $params
647 */
be2fb01f
CW
648 public static function flush($name, $params = []) {
649 $defaults = [
6a488035
TO
650 'flip' => FALSE,
651 'grouping' => FALSE,
652 'localize' => FALSE,
653 'condition' => NULL,
654 'labelColumnName' => 'label',
be2fb01f 655 ];
6a488035
TO
656
657 $params = array_merge($defaults, $params);
658 self::flushValues(
659 $name,
660 $params['flip'],
661 $params['grouping'],
662 $params['localize'],
663 $params['condition'],
664 $params['labelColumnName'],
665 TRUE,
666 TRUE
667 );
668 self::flushValues(
669 $name,
670 $params['flip'],
671 $params['grouping'],
672 $params['localize'],
673 $params['condition'],
674 $params['labelColumnName'],
675 FALSE,
676 TRUE
677 );
678 }
679
7c990617 680 /**
681 * Flush all the places where option values are cached.
682 *
683 * Note that this is called from CRM_Core_PseudoConstant::flush() so we should resist
684 * the intuitive urge to flush that class.
685 */
00be9182 686 public static function flushAll() {
be2fb01f
CW
687 self::$_values = [];
688 self::$_cache = [];
a4a33486 689 CRM_Utils_Cache::singleton()->flush();
6a488035 690 }
96025800 691
6a488035 692}