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