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