CRM-9683 implement timezone support for CiviMail
[civicrm-core.git] / CRM / Core / OptionGroup.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
0f03f337 6 | Copyright CiviCRM LLC (c) 2004-2017 |
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
0f03f337 31 * @copyright CiviCRM LLC (c) 2004-2017
6a488035
TO
32 */
33class CRM_Core_OptionGroup {
34 static $_values = array();
35 static $_cache = array();
36
d424ffde 37 /**
6a488035
TO
38 * $_domainIDGroups array maintains the list of option groups for whom
39 * domainID is to be considered.
6a488035
TO
40 */
41 static $_domainIDGroups = array(
42 'from_email_address',
43 'grant_type',
44 );
45
a0ee3941 46 /**
c490a46a 47 * @param CRM_Core_DAO $dao
a0ee3941
EM
48 * @param bool $flip
49 * @param bool $grouping
50 * @param bool $localize
51 * @param string $valueColumnName
52 *
53 * @return array
54 */
2da40d21 55 public static function &valuesCommon(
6a488035
TO
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
b44e3f84 90 * 'label' in the label column and the 'id' or 'name' in the value column
6a488035 91 *
5a4f6742
CW
92 * @param string $name
93 * name of the option group.
94 * @param bool $flip
95 * results are return in id => label format if false.
6a488035 96 * if true, the results are reversed
5a4f6742
CW
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'.
bf48aa29 111 * @param string $orderBy
03ba3ef1 112 * the column to use for ordering.
6a488035 113 *
a6c01b45 114 * @return array
bf48aa29 115 * The values as specified by the params
6a488035 116 */
2da40d21 117 public static function &values(
6a488035
TO
118 $name, $flip = FALSE, $grouping = FALSE,
119 $localize = FALSE, $condition = NULL,
148136ae
PN
120 $labelColumnName = 'label', $onlyActive = TRUE, $fresh = FALSE, $keyColumnName = 'value',
121 $orderBy = 'weight'
6a488035 122 ) {
be80e977 123 $cache = CRM_Utils_Cache::singleton();
370d56eb 124 $cacheKey = self::createCacheKey($name, $flip, $grouping, $localize, $condition, $labelColumnName, $onlyActive, $keyColumnName, $orderBy);
6a488035 125
c0c9cd82
CW
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
c0c9cd82
CW
132 $var = $cache->get($cacheKey);
133 if ($var) {
134 return $var;
135 }
6a488035
TO
136 }
137
138 $query = "
c0c9cd82 139SELECT v.{$labelColumnName} as {$labelColumnName} ,v.{$keyColumnName} as value, v.grouping as grouping
6a488035
TO
140FROM civicrm_option_value v,
141 civicrm_option_group g
142WHERE 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 ";
98d41b7d
CW
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) ";
6a488035
TO
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
148136ae 165 $query .= " ORDER BY v.{$orderBy}";
6a488035
TO
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 *
100fef9d 184 * @param string $name
6a488035
TO
185 * @param $flip
186 * @param $grouping
187 * @param $localize
188 * @param $condition
100fef9d 189 * @param string $labelColumnName
6a488035 190 * @param $onlyActive
da6b46f4 191 * @param string $keyColumnName
6a488035 192 */
c0c9cd82
CW
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);
6a488035
TO
195 $cache = CRM_Utils_Cache::singleton();
196 $cache->delete($cacheKey);
197 unset(self::$_cache[$cacheKey]);
198 }
199
a0ee3941
EM
200 /**
201 * @return string
202 */
c0c9cd82
CW
203 protected static function createCacheKey() {
204 $cacheKey = "CRM_OG_" . serialize(func_get_args());
6a488035
TO
205 return $cacheKey;
206 }
207
208 /**
fe482240 209 * This function retrieves all the values for the specific option group by id.
6a488035
TO
210 * this is primarily used to create various html based form elements
211 * (radio, select, checkbox etc). OptionGroups for most cases have the
b44e3f84 212 * 'label' in the label column and the 'id' or 'name' in the value column
6a488035 213 *
5a4f6742
CW
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'.
da6b46f4
EM
225 * @param bool $onlyActive
226 * @param bool $fresh
227 *
a6c01b45 228 * @return array
16b10e64 229 * Array of values as specified by the above params
6a488035
TO
230 * @void
231 */
00be9182 232 public static function &valuesByID($id, $flip = FALSE, $grouping = FALSE, $localize = FALSE, $labelColumnName = 'label', $onlyActive = TRUE, $fresh = FALSE) {
786ad6e1 233 $cacheKey = self::createCacheKey($id, $flip, $grouping, $localize, $labelColumnName, $onlyActive);
6a488035
TO
234
235 $cache = CRM_Utils_Cache::singleton();
786ad6e1
CW
236 if (!$fresh) {
237 $var = $cache->get($cacheKey);
238 if ($var) {
239 return $var;
240 }
6a488035
TO
241 }
242 $query = "
243SELECT v.{$labelColumnName} as {$labelColumnName} ,v.value as value, v.grouping as grouping
244FROM civicrm_option_value v,
245 civicrm_option_group g
246WHERE v.option_group_id = g.id
247 AND g.id = %1
6a488035 248 AND g.is_active = 1
6a488035 249";
786ad6e1
CW
250 if ($onlyActive) {
251 $query .= " AND v.is_active = 1 ";
252 }
253 $query .= " ORDER BY v.weight, v.label";
254
6a488035
TO
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 /**
59cba00c
J
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).
6a488035 268 *
6a0b768e
TO
269 * @param array $params
270 * Reference array of values submitted by the form. Based on.
5a4f6742
CW
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
6a488035 275 *
6a0b768e 276 * @param array $names
59cba00c 277 * Array of field names we want transformed.
5a4f6742
CW
278 * Array key = 'postName' (field name submitted by form in $params).
279 * Array value = array('newName' => $newName, 'groupName' => $groupName).
6a488035 280 *
2aa397bc 281 * @param bool $flip
6a488035 282 */
f2e3129e 283 public static function lookupValues(&$params, $names, $flip = FALSE) {
6a488035
TO
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) {
353ffa53 308 $p = array(1 => array($postValue, 'String'));
6a488035 309 $lookupBy = 'v.label= %1';
353ffa53 310 $select = "v.value";
6a488035
TO
311 }
312 else {
353ffa53 313 $p = array(1 => array($postValue, 'Integer'));
6a488035 314 $lookupBy = 'v.value = %1';
353ffa53 315 $select = "v.label";
6a488035
TO
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
a0ee3941 335 /**
d6f7dc03 336 * @deprecated - use CRM_Core_Pseudoconstant::getLabel
337 *
100fef9d 338 * @param string $groupName
a0ee3941
EM
339 * @param $value
340 * @param bool $onlyActiveValue
341 *
342 * @return null
343 */
00be9182 344 public static function getLabel($groupName, $value, $onlyActiveValue = TRUE) {
6a488035
TO
345 if (empty($groupName) ||
346 empty($value)
347 ) {
348 return NULL;
349 }
350
351 $query = "
352SELECT v.label as label ,v.value as value
353FROM civicrm_option_value v,
354 civicrm_option_group g
355WHERE 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 }
2aa397bc 363 $p = array(
353ffa53 364 1 => array($groupName, 'String'),
6a488035
TO
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
a0ee3941 374 /**
76c28c8d
DG
375 * @deprecated
376 *
377 * This function is not cached.
378 *
100fef9d 379 * @param string $groupName
a0ee3941
EM
380 * @param $label
381 * @param string $labelField
382 * @param string $labelType
383 * @param string $valueField
384 *
385 * @return null
386 */
2da40d21 387 public static function getValue(
f9f40af3 388 $groupName,
6a488035
TO
389 $label,
390 $labelField = 'label',
2aa397bc 391 $labelType = 'String',
6a488035
TO
392 $valueField = 'value'
393 ) {
394 if (empty($label)) {
395 return NULL;
396 }
397
398 $query = "
399SELECT v.label as label ,v.{$valueField} as value
400FROM civicrm_option_value v,
401 civicrm_option_group g
402WHERE 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
2aa397bc 409 $p = array(
353ffa53 410 1 => array($groupName, 'String'),
6a488035
TO
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
343d84fa
DG
422 /**
423 * Get option_value.value from default option_value row for an option group
424 *
6a0b768e
TO
425 * @param string $groupName
426 * The name of the option group.
343d84fa 427 *
343d84fa 428 *
a6c01b45
CW
429 * @return string
430 * the value from the row where is_default = true
8ef12e64 431 */
00be9182 432 public static function getDefaultValue($groupName) {
343d84fa
DG
433 if (empty($groupName)) {
434 return NULL;
435 }
436 $query = "
437SELECT v.value
438FROM civicrm_option_value v,
439 civicrm_option_group g
440WHERE 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 }
8ef12e64 453
6a488035 454 /**
d09edf64 455 * Creates a new option group with the passed in values.
6a488035
TO
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 *
6a0b768e
TO
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.
6a488035
TO
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
6a0b768e
TO
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.
6a488035 475 *
6a488035 476 *
a6c01b45
CW
477 * @return int
478 * the option group ID
6a488035 479 */
00be9182 480 public static function createAssoc($groupName, &$values, &$defaultID, $groupTitle = NULL) {
6a488035
TO
481 self::deleteAssoc($groupName);
482 if (!empty($values)) {
353ffa53
TO
483 $group = new CRM_Core_DAO_OptionGroup();
484 $group->name = $groupName;
485 $group->title = empty($groupTitle) ? $groupName : $groupTitle;
6a488035 486 $group->is_reserved = 1;
353ffa53 487 $group->is_active = 1;
6a488035
TO
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
a0ee3941 514 /**
100fef9d 515 * @param string $groupName
a0ee3941
EM
516 * @param $values
517 * @param bool $flip
518 * @param string $field
519 */
00be9182 520 public static function getAssoc($groupName, &$values, $flip = FALSE, $field = 'name') {
6a488035
TO
521 $query = "
522SELECT 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
527ORDER 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
a0ee3941 560 /**
100fef9d 561 * @param string $groupName
a0ee3941
EM
562 * @param string $operator
563 */
00be9182 564 public static function deleteAssoc($groupName, $operator = "=") {
6a488035
TO
565 $query = "
566DELETE 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
a0ee3941 577 /**
100fef9d 578 * @param string $groupName
a0ee3941
EM
579 * @param $fieldValue
580 * @param string $field
581 * @param string $fieldType
582 * @param bool $active
bc3364a9
ML
583 * @param bool $localize
584 * if true, localize the results before returning.
a0ee3941
EM
585 *
586 * @return array
587 */
2da40d21 588 public static function getRowValues(
f9f40af3 589 $groupName, $fieldValue, $field = 'name',
bc3364a9 590 $fieldType = 'String', $active = TRUE, $localize = FALSE
6a488035
TO
591 ) {
592 $query = "
593SELECT v.id, v.label, v.value, v.name, v.weight, v.description
594FROM civicrm_option_value v,
595 civicrm_option_group g
596WHERE 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
2aa397bc 606 $p = array(
353ffa53 607 1 => array($groupName, 'String'),
6a488035
TO
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(
353ffa53
TO
615 'id',
616 'name',
617 'value',
618 'label',
619 'weight',
af9b09df 620 'description',
353ffa53 621 ) as $fld) {
6a488035 622 $row[$fld] = $dao->$fld;
f623b0e8 623 if ($localize && in_array($fld, array('label', 'description'))) {
03c70eeb 624 $row[$fld] = ts($row[$fld]);
625 }
bc3364a9
ML
626 }
627 }
628
6a488035
TO
629 return $row;
630 }
631
d424ffde 632 /**
d09edf64 633 * Wrapper for calling values with fresh set to true to empty the given value.
6a488035
TO
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
d424ffde
CW
640 *
641 * @param string $name
a0ee3941
EM
642 * @param array $params
643 */
9b873358 644 public static function flush($name, $params = array()) {
6a488035
TO
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
00be9182 676 public static function flushAll() {
6a488035
TO
677 self::$_values = array();
678 self::$_cache = array();
a4a33486 679 CRM_Utils_Cache::singleton()->flush();
6a488035 680 }
96025800 681
6a488035 682}