CRM-16259 Add recordPartialPayment function and test.
[civicrm-core.git] / CRM / Core / OptionGroup.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
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'.
6a488035 111 *
a6c01b45
CW
112 * @return array
113 * the values as specified by the above params
6a488035
TO
114 * @void
115 */
2da40d21 116 public static function &values(
6a488035
TO
117 $name, $flip = FALSE, $grouping = FALSE,
118 $localize = FALSE, $condition = NULL,
c0c9cd82 119 $labelColumnName = 'label', $onlyActive = TRUE, $fresh = FALSE, $keyColumnName = 'value'
6a488035 120 ) {
be80e977 121 $cache = CRM_Utils_Cache::singleton();
c0c9cd82 122 $cacheKey = self::createCacheKey($name, $flip, $grouping, $localize, $condition, $labelColumnName, $onlyActive, $keyColumnName);
6a488035 123
c0c9cd82
CW
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
c0c9cd82
CW
130 $var = $cache->get($cacheKey);
131 if ($var) {
132 return $var;
133 }
6a488035
TO
134 }
135
136 $query = "
c0c9cd82 137SELECT v.{$labelColumnName} as {$labelColumnName} ,v.{$keyColumnName} as value, v.grouping as grouping
6a488035
TO
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
c0c9cd82 155 $query .= " ORDER BY v.weight";
6a488035
TO
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 *
100fef9d 174 * @param string $name
6a488035
TO
175 * @param $flip
176 * @param $grouping
177 * @param $localize
178 * @param $condition
100fef9d 179 * @param string $labelColumnName
6a488035 180 * @param $onlyActive
da6b46f4 181 * @param string $keyColumnName
6a488035 182 */
c0c9cd82
CW
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);
6a488035
TO
185 $cache = CRM_Utils_Cache::singleton();
186 $cache->delete($cacheKey);
187 unset(self::$_cache[$cacheKey]);
188 }
189
a0ee3941
EM
190 /**
191 * @return string
192 */
c0c9cd82
CW
193 protected static function createCacheKey() {
194 $cacheKey = "CRM_OG_" . serialize(func_get_args());
6a488035
TO
195 return $cacheKey;
196 }
197
198 /**
fe482240 199 * This function retrieves all the values for the specific option group by id.
6a488035
TO
200 * this is primarily used to create various html based form elements
201 * (radio, select, checkbox etc). OptionGroups for most cases have the
b44e3f84 202 * 'label' in the label column and the 'id' or 'name' in the value column
6a488035 203 *
5a4f6742
CW
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'.
da6b46f4
EM
215 * @param bool $onlyActive
216 * @param bool $fresh
217 *
a6c01b45 218 * @return array
16b10e64 219 * Array of values as specified by the above params
6a488035
TO
220 * @void
221 */
00be9182 222 public static function &valuesByID($id, $flip = FALSE, $grouping = FALSE, $localize = FALSE, $labelColumnName = 'label', $onlyActive = TRUE, $fresh = FALSE) {
786ad6e1 223 $cacheKey = self::createCacheKey($id, $flip, $grouping, $localize, $labelColumnName, $onlyActive);
6a488035
TO
224
225 $cache = CRM_Utils_Cache::singleton();
786ad6e1
CW
226 if (!$fresh) {
227 $var = $cache->get($cacheKey);
228 if ($var) {
229 return $var;
230 }
6a488035
TO
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
6a488035 238 AND g.is_active = 1
6a488035 239";
786ad6e1
CW
240 if ($onlyActive) {
241 $query .= " AND v.is_active = 1 ";
242 }
243 $query .= " ORDER BY v.weight, v.label";
244
6a488035
TO
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 /**
100fef9d 255 * Lookup titles OR ids for a set of option_value populated fields. The retrieved value
6a488035
TO
256 * is assigned a new fieldname by id or id's by title
257 * (each within a specificied option_group)
258 *
6a0b768e
TO
259 * @param array $params
260 * Reference array of values submitted by the form. Based on.
5a4f6742
CW
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
6a488035 265 *
6a0b768e
TO
266 * @param array $names
267 * Reference array of fieldnames we want transformed.
5a4f6742
CW
268 * Array key = 'postName' (field name submitted by form in $params).
269 * Array value = array('newName' => $newName, 'groupName' => $groupName).
6a488035
TO
270 *
271 *
2aa397bc 272 * @param bool $flip
6a488035 273 */
00be9182 274 public static function lookupValues(&$params, &$names, $flip = FALSE) {
6a488035
TO
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) {
353ffa53 299 $p = array(1 => array($postValue, 'String'));
6a488035 300 $lookupBy = 'v.label= %1';
353ffa53 301 $select = "v.value";
6a488035
TO
302 }
303 else {
353ffa53 304 $p = array(1 => array($postValue, 'Integer'));
6a488035 305 $lookupBy = 'v.value = %1';
353ffa53 306 $select = "v.label";
6a488035
TO
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
a0ee3941 326 /**
d6f7dc03 327 * @deprecated - use CRM_Core_Pseudoconstant::getLabel
328 *
100fef9d 329 * @param string $groupName
a0ee3941
EM
330 * @param $value
331 * @param bool $onlyActiveValue
332 *
333 * @return null
334 */
00be9182 335 public static function getLabel($groupName, $value, $onlyActiveValue = TRUE) {
6a488035
TO
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 }
2aa397bc 354 $p = array(
353ffa53 355 1 => array($groupName, 'String'),
6a488035
TO
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
a0ee3941 365 /**
100fef9d 366 * @param string $groupName
a0ee3941
EM
367 * @param $label
368 * @param string $labelField
369 * @param string $labelType
370 * @param string $valueField
371 *
372 * @return null
373 */
2da40d21 374 public static function getValue(
f9f40af3 375 $groupName,
6a488035
TO
376 $label,
377 $labelField = 'label',
2aa397bc 378 $labelType = 'String',
6a488035
TO
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
2aa397bc 396 $p = array(
353ffa53 397 1 => array($groupName, 'String'),
6a488035
TO
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
343d84fa
DG
409 /**
410 * Get option_value.value from default option_value row for an option group
411 *
6a0b768e
TO
412 * @param string $groupName
413 * The name of the option group.
343d84fa 414 *
343d84fa 415 *
a6c01b45
CW
416 * @return string
417 * the value from the row where is_default = true
8ef12e64 418 */
00be9182 419 public static function getDefaultValue($groupName) {
343d84fa
DG
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 }
8ef12e64 440
6a488035 441 /**
d09edf64 442 * Creates a new option group with the passed in values.
6a488035
TO
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 *
6a0b768e
TO
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.
6a488035
TO
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
6a0b768e
TO
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.
6a488035 462 *
6a488035 463 *
a6c01b45
CW
464 * @return int
465 * the option group ID
6a488035 466 */
00be9182 467 public static function createAssoc($groupName, &$values, &$defaultID, $groupTitle = NULL) {
6a488035
TO
468 self::deleteAssoc($groupName);
469 if (!empty($values)) {
353ffa53
TO
470 $group = new CRM_Core_DAO_OptionGroup();
471 $group->name = $groupName;
472 $group->title = empty($groupTitle) ? $groupName : $groupTitle;
6a488035 473 $group->is_reserved = 1;
353ffa53 474 $group->is_active = 1;
6a488035
TO
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
a0ee3941 501 /**
100fef9d 502 * @param string $groupName
a0ee3941
EM
503 * @param $values
504 * @param bool $flip
505 * @param string $field
506 */
00be9182 507 public static function getAssoc($groupName, &$values, $flip = FALSE, $field = 'name') {
6a488035
TO
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
a0ee3941 547 /**
100fef9d 548 * @param string $groupName
a0ee3941
EM
549 * @param string $operator
550 */
00be9182 551 public static function deleteAssoc($groupName, $operator = "=") {
6a488035
TO
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
a0ee3941 564 /**
100fef9d 565 * @param string $groupName
a0ee3941
EM
566 * @param $fieldValue
567 * @param string $field
568 * @param string $fieldType
569 * @param bool $active
bc3364a9
ML
570 * @param bool $localize
571 * if true, localize the results before returning.
a0ee3941
EM
572 *
573 * @return array
574 */
2da40d21 575 public static function getRowValues(
f9f40af3 576 $groupName, $fieldValue, $field = 'name',
bc3364a9 577 $fieldType = 'String', $active = TRUE, $localize = FALSE
6a488035
TO
578 ) {
579 $query = "
580SELECT v.id, v.label, v.value, v.name, v.weight, v.description
581FROM civicrm_option_value v,
582 civicrm_option_group g
583WHERE v.option_group_id = g.id
584 AND g.name = %1
585 AND g.is_active = 1
586 AND v.$field = %2
587";
588
589 if ($active) {
590 $query .= " AND v.is_active = 1";
591 }
592
2aa397bc 593 $p = array(
353ffa53 594 1 => array($groupName, 'String'),
6a488035
TO
595 2 => array($fieldValue, $fieldType),
596 );
597 $dao = CRM_Core_DAO::executeQuery($query, $p);
598 $row = array();
599
600 if ($dao->fetch()) {
601 foreach (array(
353ffa53
TO
602 'id',
603 'name',
604 'value',
605 'label',
606 'weight',
af9b09df 607 'description',
353ffa53 608 ) as $fld) {
6a488035 609 $row[$fld] = $dao->$fld;
f623b0e8 610 if ($localize && in_array($fld, array('label', 'description'))) {
03c70eeb 611 $row[$fld] = ts($row[$fld]);
612 }
bc3364a9
ML
613 }
614 }
615
6a488035
TO
616 return $row;
617 }
618
d424ffde 619 /**
d09edf64 620 * Wrapper for calling values with fresh set to true to empty the given value.
6a488035
TO
621 *
622 * Since there appears to be some inconsistency
623 * (@todo remove inconsistency) around the pseudoconstant operations
624 * (for example CRM_Contribution_Pseudoconstant::paymentInstrument doesn't specify isActive
625 * which is part of the cache key
626 * will do a couple of variations & aspire to someone cleaning it up later
d424ffde
CW
627 *
628 * @param string $name
a0ee3941
EM
629 * @param array $params
630 */
9b873358 631 public static function flush($name, $params = array()) {
6a488035
TO
632 $defaults = array(
633 'flip' => FALSE,
634 'grouping' => FALSE,
635 'localize' => FALSE,
636 'condition' => NULL,
637 'labelColumnName' => 'label',
638 );
639
640 $params = array_merge($defaults, $params);
641 self::flushValues(
642 $name,
643 $params['flip'],
644 $params['grouping'],
645 $params['localize'],
646 $params['condition'],
647 $params['labelColumnName'],
648 TRUE,
649 TRUE
650 );
651 self::flushValues(
652 $name,
653 $params['flip'],
654 $params['grouping'],
655 $params['localize'],
656 $params['condition'],
657 $params['labelColumnName'],
658 FALSE,
659 TRUE
660 );
661 }
662
00be9182 663 public static function flushAll() {
6a488035
TO
664 self::$_values = array();
665 self::$_cache = array();
a4a33486 666 CRM_Utils_Cache::singleton()->flush();
6a488035 667 }
96025800 668
6a488035 669}