Fix caching to not treat an empty array as a cache miss.
[civicrm-core.git] / CRM / Core / PseudoConstant.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
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 * Stores all constants and pseudo constants for CRM application.
31 *
32 * examples of constants are "Contact Type" which will always be either
33 * 'Individual', 'Household', 'Organization'.
34 *
35 * pseudo constants are entities from the database whose values rarely
36 * change. examples are list of countries, states, location types,
37 * relationship types.
38 *
39 * currently we're getting the data from the underlying database. this
40 * will be reworked to use caching.
41 *
42 * Note: All pseudoconstants should be uninitialized or default to NULL.
43 * This provides greater consistency/predictability after flushing.
44 *
45 * @package CRM
8c9251b3 46 * @copyright CiviCRM LLC (c) 2004-2018
6a488035
TO
47 */
48class CRM_Core_PseudoConstant {
49
887a4028 50 /**
d09edf64 51 * Static cache for pseudoconstant arrays.
887a4028 52 * @var array
887a4028
A
53 */
54 private static $cache;
55
6a488035 56 /**
c490a46a 57 * @deprecated Please use the buildOptions() method in the appropriate BAO object.
29494eef 58 *
6a488035
TO
59 * activity type
60 * @var array
6a488035
TO
61 */
62 private static $activityType;
63
6a488035 64 /**
100fef9d 65 * States, provinces
6a488035 66 * @var array
6a488035
TO
67 */
68 private static $stateProvince;
69
70 /**
d09edf64 71 * Counties.
6a488035 72 * @var array
6a488035
TO
73 */
74 private static $county;
75
76 /**
100fef9d 77 * States/provinces abbreviations
6a488035 78 * @var array
6a488035 79 */
05a8d245 80 private static $stateProvinceAbbreviation = array();
6a488035
TO
81
82 /**
d09edf64 83 * Country.
6a488035 84 * @var array
6a488035
TO
85 */
86 private static $country;
87
88 /**
d09edf64 89 * CountryIsoCode.
6a488035 90 * @var array
6a488035
TO
91 */
92 private static $countryIsoCode;
93
6a488035 94 /**
c490a46a 95 * @deprecated Please use the buildOptions() method in the appropriate BAO object.
29494eef 96 *
6a488035
TO
97 * group
98 * @var array
6a488035
TO
99 */
100 private static $group;
101
6a488035 102 /**
100fef9d 103 * RelationshipType
6a488035 104 * @var array
6a488035
TO
105 */
106 private static $relationshipType;
107
108 /**
100fef9d 109 * Civicrm groups that are not smart groups
6a488035 110 * @var array
6a488035
TO
111 */
112 private static $staticGroup;
113
6a488035 114 /**
100fef9d 115 * Currency codes
6a488035 116 * @var array
6a488035
TO
117 */
118 private static $currencyCode;
119
6a488035 120 /**
100fef9d 121 * Payment processor
6a488035 122 * @var array
6a488035
TO
123 */
124 private static $paymentProcessor;
125
126 /**
100fef9d 127 * Payment processor types
6a488035 128 * @var array
6a488035
TO
129 */
130 private static $paymentProcessorType;
131
132 /**
133 * World Region
134 * @var array
6a488035
TO
135 */
136 private static $worldRegions;
137
6a488035 138 /**
c490a46a 139 * @deprecated Please use the buildOptions() method in the appropriate BAO object.
29494eef 140 *
6a488035
TO
141 * activity status
142 * @var array
6a488035
TO
143 */
144 private static $activityStatus;
145
6a488035
TO
146 /**
147 * Visibility
148 * @var array
6a488035
TO
149 */
150 private static $visibility;
151
6a488035
TO
152 /**
153 * Greetings
154 * @var array
6a488035
TO
155 */
156 private static $greeting;
157
6a488035
TO
158 /**
159 * Extensions of type module
160 * @var array
6a488035
TO
161 */
162 private static $extensions;
163
f743a6eb
CW
164 /**
165 * Financial Account Type
166 * @var array
f743a6eb
CW
167 */
168 private static $accountOptionValues;
169
887a4028 170 /**
6d68a4cb
CW
171 * Low-level option getter, rarely accessed directly.
172 * NOTE: Rather than calling this function directly use CRM_*_BAO_*::buildOptions()
7eaff122 173 * @see https://docs.civicrm.org/dev/en/latest/framework/pseudoconstant/
6d68a4cb 174 *
76068c6a
TO
175 * NOTE: If someone undertakes a refactoring of this, please consider the use-case of
176 * the Setting.getoptions API. There is no DAO/field, but it would be nice to use the
177 * same 'pseudoconstant' struct in *.settings.php. This means loosening the coupling
178 * between $field lookup and the $pseudoconstant evaluation.
179 *
6a0b768e
TO
180 * @param string $daoName
181 * @param string $fieldName
182 * @param array $params
a42ef93c
CW
183 * - name string name of the option group
184 * - flip boolean results are return in id => label format if false
185 * if true, the results are reversed
186 * - grouping boolean if true, return the value in 'grouping' column (currently unsupported for tables other than option_value)
187 * - localize boolean if true, localize the results before returning
f743a6eb 188 * - condition string|array add condition(s) to the sql query - will be concatenated using 'AND'
091fe2a8
CW
189 * - keyColumn string the column to use for 'id'
190 * - labelColumn string the column to use for 'label'
6d68a4cb 191 * - orderColumn string the column to use for sorting, defaults to 'weight' column if one exists, else defaults to labelColumn
a42ef93c
CW
192 * - onlyActive boolean return only the action option values
193 * - fresh boolean ignore cache entries and go back to DB
353ffa53 194 * @param string $context : Context string
5b22d1b8 195 * @see CRM_Core_DAO::buildOptionsContext
887a4028 196 *
8d7a9d07 197 * @return array|bool
72b3a70c 198 * array on success, FALSE on error.
a42ef93c 199 *
887a4028 200 */
786ad6e1
CW
201 public static function get($daoName, $fieldName, $params = array(), $context = NULL) {
202 CRM_Core_DAO::buildOptionsContext($context);
f2b53f26 203 $flip = !empty($params['flip']);
786ad6e1
CW
204 // Merge params with defaults
205 $params += array(
206 'grouping' => FALSE,
207 'localize' => FALSE,
c203a3d6 208 'onlyActive' => ($context == 'validate' || $context == 'get') ? FALSE : TRUE,
786ad6e1 209 'fresh' => FALSE,
33e61cb8 210 'context' => $context,
786ad6e1 211 );
33e61cb8 212 $entity = CRM_Core_DAO_AllCoreTables::getBriefName(CRM_Core_DAO_AllCoreTables::getCanonicalClassName($daoName));
f2b53f26
CW
213
214 // Custom fields are not in the schema
786ad6e1 215 if (strpos($fieldName, 'custom_') === 0 && is_numeric($fieldName[7])) {
2921fb78 216 $customField = new CRM_Core_BAO_CustomField();
a3d8b390 217 $customField->id = (int) substr($fieldName, 7);
832d5c06 218 $options = $customField->getOptions($context);
2fea9ed9
CW
219 if ($options && $flip) {
220 $options = array_flip($options);
a3d8b390
CW
221 }
222 $customField->free();
786ad6e1 223 return $options;
f2b53f26
CW
224 }
225
226 // Core field: load schema
8d7a9d07 227 $dao = new $daoName();
5fafc9b0 228 $fieldSpec = $dao->getFieldSpec($fieldName);
091fe2a8 229 $dao->free();
4268623e 230
33e61cb8
CW
231 // Ensure we have the canonical name for this field
232 $fieldName = CRM_Utils_Array::value('name', $fieldSpec, $fieldName);
4268623e 233
33e61cb8 234 // Return false if field doesn't exist.
5fafc9b0 235 if (empty($fieldSpec)) {
ecc63dd6
A
236 return FALSE;
237 }
887a4028 238
887a4028
A
239 elseif (!empty($fieldSpec['pseudoconstant'])) {
240 $pseudoconstant = $fieldSpec['pseudoconstant'];
cc6443c4 241
242 // if callback is specified..
22e263ad 243 if (!empty($pseudoconstant['callback'])) {
466fce54 244 $fieldOptions = call_user_func(Civi\Core\Resolver::singleton()->get($pseudoconstant['callback']), $context);
ca0f1c4b
TL
245 //CRM-18223: Allow additions to field options via hook.
246 CRM_Utils_Hook::fieldOptions($entity, $fieldName, $fieldOptions, $params);
247 return $fieldOptions;
cc6443c4 248 }
249
786ad6e1 250 // Merge params with schema defaults
091fe2a8 251 $params += array(
786ad6e1 252 'condition' => CRM_Utils_Array::value('condition', $pseudoconstant, array()),
091fe2a8
CW
253 'keyColumn' => CRM_Utils_Array::value('keyColumn', $pseudoconstant),
254 'labelColumn' => CRM_Utils_Array::value('labelColumn', $pseudoconstant),
091fe2a8
CW
255 );
256
f6635f33
AH
257 if ($context == 'abbreviate') {
258 switch ($fieldName) {
259 case 'state_province_id':
260 $params['labelColumn'] = 'abbreviation';
261 break;
2e1050f4 262
f6635f33
AH
263 case 'country_id':
264 $params['labelColumn'] = 'iso_code';
265 break;
2e1050f4 266
f6635f33
AH
267 default:
268 }
269 }
270
091fe2a8 271 // Fetch option group from option_value table
22e263ad 272 if (!empty($pseudoconstant['optionGroupName'])) {
786ad6e1
CW
273 if ($context == 'validate') {
274 $params['labelColumn'] = 'name';
275 }
b432ddaa
CW
276 if ($context == 'match') {
277 $params['keyColumn'] = 'name';
278 }
a42ef93c 279 // Call our generic fn for retrieving from the option_value table
33e61cb8 280 $options = CRM_Core_OptionGroup::values(
887a4028 281 $pseudoconstant['optionGroupName'],
a42ef93c
CW
282 $flip,
283 $params['grouping'],
284 $params['localize'],
f743a6eb 285 $params['condition'] ? ' AND ' . implode(' AND ', (array) $params['condition']) : NULL,
091fe2a8 286 $params['labelColumn'] ? $params['labelColumn'] : 'label',
a42ef93c 287 $params['onlyActive'],
c0c9cd82 288 $params['fresh'],
fb011779
PN
289 $params['keyColumn'] ? $params['keyColumn'] : 'value',
290 !empty($params['orderColumn']) ? $params['orderColumn'] : 'weight'
887a4028 291 );
33e61cb8
CW
292 CRM_Utils_Hook::fieldOptions($entity, $fieldName, $options, $params);
293 return $options;
887a4028 294 }
091fe2a8
CW
295
296 // Fetch options from other tables
887a4028 297 if (!empty($pseudoconstant['table'])) {
a42ef93c
CW
298 // Normalize params so the serialized cache string will be consistent.
299 CRM_Utils_Array::remove($params, 'flip', 'fresh');
887a4028 300 ksort($params);
a1ef51e2 301 $cacheKey = $daoName . $fieldName . serialize($params);
887a4028 302
a1ef51e2 303 // Retrieve cached options
a42ef93c 304 if (isset(self::$cache[$cacheKey]) && empty($params['fresh'])) {
a1ef51e2 305 $output = self::$cache[$cacheKey];
887a4028 306 }
a1ef51e2 307 else {
4539198e 308 $daoName = CRM_Core_DAO_AllCoreTables::getClassForTable($pseudoconstant['table']);
2158332a
CW
309 if (!class_exists($daoName)) {
310 return FALSE;
311 }
312 // Get list of fields for the option table
8d7a9d07 313 $dao = new $daoName();
7ae0389f
CW
314 $availableFields = array_keys($dao->fieldKeys());
315 $dao->free();
887a4028 316
a1ef51e2
CW
317 $select = "SELECT %1 AS id, %2 AS label";
318 $from = "FROM %3";
319 $wheres = array();
320 $order = "ORDER BY %2";
786ad6e1 321
b432ddaa
CW
322 // Use machine name in certain contexts
323 if ($context == 'validate' || $context == 'match') {
324 $nameField = $context == 'validate' ? 'labelColumn' : 'keyColumn';
a38a89fc 325 if (!empty($pseudoconstant['nameColumn'])) {
b432ddaa 326 $params[$nameField] = $pseudoconstant['nameColumn'];
a38a89fc
CW
327 }
328 elseif (in_array('name', $availableFields)) {
b432ddaa 329 $params[$nameField] = 'name';
a38a89fc 330 }
786ad6e1 331 }
6d68a4cb 332 // Condition param can be passed as an sql clause string or an array of clauses
a1ef51e2 333 if (!empty($params['condition'])) {
6d68a4cb 334 $wheres[] = implode(' AND ', (array) $params['condition']);
a1ef51e2 335 }
6d68a4cb 336 // onlyActive param will automatically filter on common flags
a1ef51e2 337 if (!empty($params['onlyActive'])) {
21d4b9c1 338 foreach (array('is_active' => 1, 'is_deleted' => 0, 'is_test' => 0, 'is_hidden' => 0) as $flag => $val) {
6d68a4cb
CW
339 if (in_array($flag, $availableFields)) {
340 $wheres[] = "$flag = $val";
341 }
a1ef51e2
CW
342 }
343 }
6d68a4cb
CW
344 // Filter domain specific options
345 if (in_array('domain_id', $availableFields)) {
346 $wheres[] = 'domain_id = ' . CRM_Core_Config::domainID();
347 }
a1ef51e2 348 $queryParams = array(
353ffa53
TO
349 1 => array($params['keyColumn'], 'String', CRM_Core_DAO::QUERY_FORMAT_NO_QUOTES),
350 2 => array($params['labelColumn'], 'String', CRM_Core_DAO::QUERY_FORMAT_NO_QUOTES),
351 3 => array($pseudoconstant['table'], 'String', CRM_Core_DAO::QUERY_FORMAT_NO_QUOTES),
a1ef51e2
CW
352 );
353 // Add orderColumn param
354 if (!empty($params['orderColumn'])) {
355 $queryParams[4] = array($params['orderColumn'], 'String', CRM_Core_DAO::QUERY_FORMAT_NO_QUOTES);
356 $order = "ORDER BY %4";
357 }
358 // Support no sorting if $params[orderColumn] is FALSE
359 elseif (isset($params['orderColumn']) && $params['orderColumn'] === FALSE) {
360 $order = '';
361 }
362 // Default to 'weight' if that column exists
363 elseif (in_array('weight', $availableFields)) {
364 $order = "ORDER BY weight";
365 }
a42ef93c 366
a1ef51e2
CW
367 $output = array();
368 $query = "$select $from";
369 if ($wheres) {
370 $query .= " WHERE " . implode($wheres, ' AND ');
371 }
372 $query .= ' ' . $order;
373 $dao = CRM_Core_DAO::executeQuery($query, $queryParams);
374 while ($dao->fetch()) {
375 $output[$dao->id] = $dao->label;
376 }
377 $dao->free();
a3d8b390
CW
378 // Localize results
379 if (!empty($params['localize']) || $pseudoconstant['table'] == 'civicrm_country' || $pseudoconstant['table'] == 'civicrm_state_province') {
380 $I18nParams = array();
381 if ($pseudoconstant['table'] == 'civicrm_country') {
382 $I18nParams['context'] = 'country';
383 }
384 if ($pseudoconstant['table'] == 'civicrm_state_province') {
385 $I18nParams['context'] = 'province';
386 }
a1ef51e2 387 $i18n = CRM_Core_I18n::singleton();
a3d8b390 388 $i18n->localizeArray($output, $I18nParams);
a1ef51e2
CW
389 // Maintain sort by label
390 if ($order == "ORDER BY %2") {
391 CRM_Utils_Array::asort($output);
392 }
393 }
33e61cb8 394 CRM_Utils_Hook::fieldOptions($entity, $fieldName, $output, $params);
a1ef51e2
CW
395 self::$cache[$cacheKey] = $output;
396 }
397 return $flip ? array_flip($output) : $output;
887a4028
A
398 }
399 }
a3d8b390
CW
400
401 // Return "Yes" and "No" for boolean fields
402 elseif (CRM_Utils_Array::value('type', $fieldSpec) === CRM_Utils_Type::T_BOOLEAN) {
3b66f502 403 $output = $context == 'validate' ? array(0, 1) : CRM_Core_SelectValues::boolean();
33e61cb8 404 CRM_Utils_Hook::fieldOptions($entity, $fieldName, $output, $params);
a3d8b390
CW
405 return $flip ? array_flip($output) : $output;
406 }
887a4028
A
407 // If we're still here, it's an error. Return FALSE.
408 return FALSE;
409 }
410
6a488035 411 /**
d09edf64 412 * Fetch the translated label for a field given its key.
dcda1cd5 413 *
6a0b768e
TO
414 * @param string $baoName
415 * @param string $fieldName
416 * @param string|Int $key
a8c23526
CW
417 *
418 * TODO: Accept multivalued input?
dcda1cd5 419 *
2a3f958d
CW
420 * @return bool|null|string
421 * FALSE if the given field has no associated option list
422 * NULL if the given key has no corresponding option
423 * String if label is found
dcda1cd5 424 */
00be9182 425 public static function getLabel($baoName, $fieldName, $key) {
a8c23526
CW
426 $values = $baoName::buildOptions($fieldName, 'get');
427 if ($values === FALSE) {
428 return FALSE;
429 }
430 return CRM_Utils_Array::value($key, $values);
431 }
432
433 /**
d09edf64 434 * Fetch the machine name for a field given its key.
a8c23526 435 *
6a0b768e
TO
436 * @param string $baoName
437 * @param string $fieldName
438 * @param string|Int $key
a8c23526
CW
439 *
440 * @return bool|null|string
441 * FALSE if the given field has no associated option list
442 * NULL if the given key has no corresponding option
443 * String if label is found
444 */
00be9182 445 public static function getName($baoName, $fieldName, $key) {
a8c23526 446 $values = $baoName::buildOptions($fieldName, 'validate');
2a3f958d
CW
447 if ($values === FALSE) {
448 return FALSE;
449 }
450 return CRM_Utils_Array::value($key, $values);
451 }
dcda1cd5
CW
452
453 /**
d09edf64 454 * Fetch the key for a field option given its name.
dcda1cd5 455 *
6a0b768e
TO
456 * @param string $baoName
457 * @param string $fieldName
458 * @param string|Int $value
dcda1cd5 459 *
8d7a9d07 460 * @return bool|null|string|int
2a3f958d
CW
461 * FALSE if the given field has no associated option list
462 * NULL if the given key has no corresponding option
463 * String|Number if key is found
dcda1cd5 464 */
00be9182 465 public static function getKey($baoName, $fieldName, $value) {
a8c23526 466 $values = $baoName::buildOptions($fieldName, 'validate');
2a3f958d
CW
467 if ($values === FALSE) {
468 return FALSE;
469 }
470 return CRM_Utils_Array::key($value, $values);
471 }
dcda1cd5 472
e869b07d
CW
473 /**
474 * Lookup the admin page at which a field's option list can be edited
475 * @param $fieldSpec
476 * @return string|null
477 */
00be9182 478 public static function getOptionEditUrl($fieldSpec) {
e869b07d
CW
479 // If it's an option group, that's easy
480 if (!empty($fieldSpec['pseudoconstant']['optionGroupName'])) {
481 return 'civicrm/admin/options/' . $fieldSpec['pseudoconstant']['optionGroupName'];
482 }
483 // For everything else...
484 elseif (!empty($fieldSpec['pseudoconstant']['table'])) {
485 $daoName = CRM_Core_DAO_AllCoreTables::getClassForTable($fieldSpec['pseudoconstant']['table']);
486 if (!$daoName) {
487 return NULL;
488 }
489 // We don't have good mapping so have to do a bit of guesswork from the menu
e1462487 490 list(, $parent, , $child) = explode('_', $daoName);
e869b07d 491 $sql = "SELECT path FROM civicrm_menu
e1462487
CW
492 WHERE page_callback LIKE '%CRM_Admin_Page_$child%' OR page_callback LIKE '%CRM_{$parent}_Page_$child%'
493 ORDER BY page_callback
e869b07d
CW
494 LIMIT 1";
495 return CRM_Core_Dao::singleValueQuery($sql);
496 }
497 return NULL;
498 }
499
dcda1cd5 500 /**
d09edf64 501 * DEPRECATED generic populate method.
c490a46a 502 * All pseudoconstant functions that use this method are also @deprecated
6a488035
TO
503 *
504 * The static array $var is populated from the db
505 * using the <b>$name DAO</b>.
506 *
507 * Note: any database errors will be trapped by the DAO.
508 *
6a0b768e
TO
509 * @param array $var
510 * The associative array we will fill.
511 * @param string $name
512 * The name of the DAO.
513 * @param bool $all
514 * Get all objects. default is to get only active ones.
515 * @param string $retrieve
516 * The field that we are interested in (normally name, differs in some objects).
517 * @param string $filter
518 * The field that we want to filter the result set with.
519 * @param string $condition
520 * The condition that gets passed to the final query as the WHERE clause.
745b795a 521 *
8eedd10a 522 * @param bool $orderby
745b795a 523 * @param string $key
8eedd10a 524 * @param bool $force
6a488035 525 *
8eedd10a 526 * @return array
6a488035 527 */
8360b701
DL
528 public static function populate(
529 &$var,
530 $name,
531 $all = FALSE,
532 $retrieve = 'name',
533 $filter = 'is_active',
534 $condition = NULL,
535 $orderby = NULL,
536 $key = 'id',
537 $force = NULL
538 ) {
ec87a877 539 $cacheKey = CRM_Core_BAO_Cache::cleanKey("CRM_PC_{$name}_{$all}_{$key}_{$retrieve}_{$filter}_{$condition}_{$orderby}");
353ffa53
TO
540 $cache = CRM_Utils_Cache::singleton();
541 $var = $cache->get($cacheKey);
4f468a50 542 if ($var !== NULL && empty($force)) {
6a488035
TO
543 return $var;
544 }
545
5836c35a 546 /* @var CRM_Core_DAO $object */
8d7a9d07 547 $object = new $name();
6a488035
TO
548
549 $object->selectAdd();
550 $object->selectAdd("$key, $retrieve");
551 if ($condition) {
552 $object->whereAdd($condition);
553 }
554
555 if (!$orderby) {
556 $object->orderBy($retrieve);
557 }
558 else {
559 $object->orderBy($orderby);
560 }
561
562 if (!$all) {
563 $object->$filter = 1;
5836c35a
CW
564 $aclClauses = array_filter($name::getSelectWhereClause());
565 foreach ($aclClauses as $clause) {
566 $object->whereAdd($clause);
567 }
6a488035
TO
568 }
569
570 $object->find();
571 $var = array();
572 while ($object->fetch()) {
573 $var[$object->$key] = $object->$retrieve;
574 }
575
576 $cache->set($cacheKey, $var);
577 }
578
579 /**
d09edf64 580 * Flush given pseudoconstant so it can be reread from db.
6a488035
TO
581 * nex time it's requested.
582 *
2a6da8d7 583 * @param bool|string $name pseudoconstant to be flushed
6a488035 584 */
2683ce94 585 public static function flush($name = 'cache') {
80085473 586 if (isset(self::$$name)) {
fa56270d
CW
587 self::$$name = NULL;
588 }
80085473
CW
589 if ($name == 'cache') {
590 CRM_Core_OptionGroup::flushAll();
7c990617 591 if (isset(\Civi::$statics[__CLASS__])) {
592 unset(\Civi::$statics[__CLASS__]);
593 }
80085473 594 }
6a488035
TO
595 }
596
6a488035 597 /**
c490a46a 598 * @deprecated Please use the buildOptions() method in the appropriate BAO object.
a19392e7 599 *
6a488035
TO
600 * Get all Activty types.
601 *
602 * The static array activityType is returned
603 *
6a488035 604 *
a6c01b45
CW
605 * @return array
606 * array reference of all activity types.
6a488035
TO
607 */
608 public static function &activityType() {
609 $args = func_get_args();
610 $all = CRM_Utils_Array::value(0, $args, TRUE);
611 $includeCaseActivities = CRM_Utils_Array::value(1, $args, FALSE);
612 $reset = CRM_Utils_Array::value(2, $args, FALSE);
613 $returnColumn = CRM_Utils_Array::value(3, $args, 'label');
614 $includeCampaignActivities = CRM_Utils_Array::value(4, $args, FALSE);
615 $onlyComponentActivities = CRM_Utils_Array::value(5, $args, FALSE);
616 $index = (int) $all . '_' . $returnColumn . '_' . (int) $includeCaseActivities;
617 $index .= '_' . (int) $includeCampaignActivities;
618 $index .= '_' . (int) $onlyComponentActivities;
619
620 if (NULL === self::$activityType) {
621 self::$activityType = array();
622 }
623
624 if (!isset(self::$activityType[$index]) || $reset) {
625 $condition = NULL;
626 if (!$all) {
627 $condition = 'AND filter = 0';
628 }
629 $componentClause = " v.component_id IS NULL";
630 if ($onlyComponentActivities) {
631 $componentClause = " v.component_id IS NOT NULL";
632 }
633
634 $componentIds = array();
635 $compInfo = CRM_Core_Component::getEnabledComponents();
636
637 // build filter for listing activity types only if their
638 // respective components are enabled
639 foreach ($compInfo as $compName => $compObj) {
640 if ($compName == 'CiviCase') {
641 if ($includeCaseActivities) {
642 $componentIds[] = $compObj->componentID;
643 }
644 }
645 elseif ($compName == 'CiviCampaign') {
646 if ($includeCampaignActivities) {
647 $componentIds[] = $compObj->componentID;
648 }
649 }
650 else {
651 $componentIds[] = $compObj->componentID;
652 }
653 }
654
655 if (count($componentIds)) {
656 $componentIds = implode(',', $componentIds);
657 $componentClause = " ($componentClause OR v.component_id IN ($componentIds))";
658 if ($onlyComponentActivities) {
659 $componentClause = " ( v.component_id IN ($componentIds ) )";
660 }
661 }
bdd7b275 662 $condition = $condition . ' AND ' . $componentClause;
6a488035
TO
663
664 self::$activityType[$index] = CRM_Core_OptionGroup::values('activity_type', FALSE, FALSE, FALSE, $condition, $returnColumn);
665 }
666 return self::$activityType[$index];
667 }
0e6e8724 668
6a488035
TO
669 /**
670 * Get all the State/Province from database.
671 *
672 * The static array stateProvince is returned, and if it's
673 * called the first time, the <b>State Province DAO</b> is used
674 * to get all the States.
675 *
676 * Note: any database errors will be trapped by the DAO.
677 *
6a488035 678 *
6a0b768e 679 * @param bool|int $id - Optional id to return
6a488035 680 *
2a6da8d7 681 * @param bool $limit
6a488035 682 *
a6c01b45
CW
683 * @return array
684 * array reference of all State/Provinces.
6a488035
TO
685 */
686 public static function &stateProvince($id = FALSE, $limit = TRUE) {
687 if (($id && !CRM_Utils_Array::value($id, self::$stateProvince)) || !self::$stateProvince || !$id) {
688 $whereClause = FALSE;
6a488035
TO
689 if ($limit) {
690 $countryIsoCodes = self::countryIsoCode();
0acb7f15 691 $limitCodes = CRM_Core_BAO_Country::provinceLimit();
353ffa53 692 $limitIds = array();
6a488035
TO
693 foreach ($limitCodes as $code) {
694 $limitIds = array_merge($limitIds, array_keys($countryIsoCodes, $code));
695 }
696 if (!empty($limitIds)) {
697 $whereClause = 'country_id IN (' . implode(', ', $limitIds) . ')';
698 }
699 else {
700 $whereClause = FALSE;
701 }
702 }
703 self::populate(self::$stateProvince, 'CRM_Core_DAO_StateProvince', TRUE, 'name', 'is_active', $whereClause);
704
705 // localise the province names if in an non-en_US locale
98466ff9 706 $tsLocale = CRM_Core_I18n::getLocale();
6a488035
TO
707 if ($tsLocale != '' and $tsLocale != 'en_US') {
708 $i18n = CRM_Core_I18n::singleton();
709 $i18n->localizeArray(self::$stateProvince, array(
353ffa53
TO
710 'context' => 'province',
711 ));
6a488035
TO
712 self::$stateProvince = CRM_Utils_Array::asort(self::$stateProvince);
713 }
714 }
715 if ($id) {
716 if (array_key_exists($id, self::$stateProvince)) {
717 return self::$stateProvince[$id];
718 }
719 else {
720 $result = NULL;
721 return $result;
722 }
723 }
724 return self::$stateProvince;
725 }
726
727 /**
728 * Get all the State/Province abbreviations from the database.
729 *
730 * Same as above, except gets the abbreviations instead of the names.
731 *
6a488035 732 *
6a0b768e 733 * @param bool|int $id - Optional id to return
2a6da8d7
EM
734 *
735 * @param bool $limit
6a488035 736 *
a6c01b45
CW
737 * @return array
738 * array reference of all State/Province abbreviations.
6a488035 739 */
a8215a8d 740 public static function stateProvinceAbbreviation($id = FALSE, $limit = TRUE) {
05a8d245 741 if ($id && is_numeric($id)) {
742 if (!array_key_exists($id, (array) self::$stateProvinceAbbreviation)) {
743 $query = "SELECT abbreviation
6a488035
TO
744FROM civicrm_state_province
745WHERE id = %1";
05a8d245 746 $params = array(
747 1 => array(
748 $id,
749 'Integer',
750 ),
751 );
752 self::$stateProvinceAbbreviation[$id] = CRM_Core_DAO::singleValueQuery($query, $params);
753 }
754 return self::$stateProvinceAbbreviation[$id];
6a488035 755 }
05a8d245 756 else {
6a488035
TO
757 $whereClause = FALSE;
758
759 if ($limit) {
6a488035 760 $countryIsoCodes = self::countryIsoCode();
0acb7f15 761 $limitCodes = CRM_Core_BAO_Country::provinceLimit();
353ffa53 762 $limitIds = array();
6a488035
TO
763 foreach ($limitCodes as $code) {
764 $tmpArray = array_keys($countryIsoCodes, $code);
765
766 if (!empty($tmpArray)) {
767 $limitIds[] = array_shift($tmpArray);
768 }
769 }
770 if (!empty($limitIds)) {
771 $whereClause = 'country_id IN (' . implode(', ', $limitIds) . ')';
772 }
773 }
774 self::populate(self::$stateProvinceAbbreviation, 'CRM_Core_DAO_StateProvince', TRUE, 'abbreviation', 'is_active', $whereClause);
775 }
776
6a488035
TO
777 return self::$stateProvinceAbbreviation;
778 }
779
4352bd72 780 /**
781 * Get all the State/Province abbreviations from the database for the specified country.
782 *
783 * @param int $countryID
784 *
785 * @return array
786 * array of all State/Province abbreviations for the given country.
787 */
788 public static function stateProvinceAbbreviationForCountry($countryID) {
789 if (!isset(\Civi::$statics[__CLASS__]['stateProvinceAbbreviationForCountry'][$countryID])) {
790 \Civi::$statics[__CLASS__]['stateProvinceAbbreviationForCountry'][$countryID] = array();
791 }
792 self::populate(\Civi::$statics[__CLASS__]['stateProvinceAbbreviationForCountry'][$countryID], 'CRM_Core_DAO_StateProvince', TRUE, 'abbreviation', 'is_active', "country_id = " . (int) $countryID, 'abbreviation');
793 return \Civi::$statics[__CLASS__]['stateProvinceAbbreviationForCountry'][$countryID];
794 }
795
796 /**
797 * Get all the State/Province abbreviations from the database for the default country.
798 *
799 * @return array
800 * array of all State/Province abbreviations for the given country.
801 */
802 public static function stateProvinceAbbreviationForDefaultCountry() {
803 return CRM_Core_PseudoConstant::stateProvinceAbbreviationForCountry(Civi::settings()->get('defaultContactCountry'));
804 }
805
6a488035
TO
806 /**
807 * Get all the countries from database.
808 *
809 * The static array country is returned, and if it's
810 * called the first time, the <b>Country DAO</b> is used
811 * to get all the countries.
812 *
813 * Note: any database errors will be trapped by the DAO.
814 *
6a488035 815 *
dd244018 816 * @param bool|int $id - Optional id to return
6a488035 817 *
dd244018 818 * @param bool $applyLimit
6a488035 819 *
1273d77c 820 * @return array|null
a6c01b45 821 * array reference of all countries.
6a488035
TO
822 */
823 public static function country($id = FALSE, $applyLimit = TRUE) {
824 if (($id && !CRM_Utils_Array::value($id, self::$country)) || !self::$country || !$id) {
825
826 $config = CRM_Core_Config::singleton();
827 $limitCodes = array();
828
829 if ($applyLimit) {
830 // limit the country list to the countries specified in CIVICRM_COUNTRY_LIMIT
831 // (ensuring it's a subset of the legal values)
832 // K/P: We need to fix this, i dont think it works with new setting files
0acb7f15 833 $limitCodes = CRM_Core_BAO_Country::countryLimit();
6a488035
TO
834 if (!is_array($limitCodes)) {
835 $limitCodes = array(
836 $config->countryLimit => 1,
837 );
838 }
839
840 $limitCodes = array_intersect(self::countryIsoCode(), $limitCodes);
841 }
842
843 if (count($limitCodes)) {
844 $whereClause = "iso_code IN ('" . implode("', '", $limitCodes) . "')";
845 }
846 else {
847 $whereClause = NULL;
848 }
849
850 self::populate(self::$country, 'CRM_Core_DAO_Country', TRUE, 'name', 'is_active', $whereClause);
851
852 // if default country is set, percolate it to the top
853 if ($config->defaultContactCountry()) {
854 $countryIsoCodes = self::countryIsoCode();
855 $defaultID = array_search($config->defaultContactCountry(), $countryIsoCodes);
856 if ($defaultID !== FALSE) {
857 $default[$defaultID] = CRM_Utils_Array::value($defaultID, self::$country);
858 self::$country = $default + self::$country;
859 }
860 }
861
862 // localise the country names if in an non-en_US locale
98466ff9 863 $tsLocale = CRM_Core_I18n::getLocale();
6a488035
TO
864 if ($tsLocale != '' and $tsLocale != 'en_US') {
865 $i18n = CRM_Core_I18n::singleton();
866 $i18n->localizeArray(self::$country, array(
353ffa53
TO
867 'context' => 'country',
868 ));
6a488035
TO
869 self::$country = CRM_Utils_Array::asort(self::$country);
870 }
871 }
872 if ($id) {
873 if (array_key_exists($id, self::$country)) {
874 return self::$country[$id];
875 }
876 else {
1273d77c 877 return NULL;
6a488035
TO
878 }
879 }
880 return self::$country;
881 }
882
883 /**
884 * Get all the country ISO Code abbreviations from the database.
885 *
886 * The static array countryIsoCode is returned, and if it's
887 * called the first time, the <b>Country DAO</b> is used
888 * to get all the countries' ISO codes.
889 *
890 * Note: any database errors will be trapped by the DAO.
891 *
6a488035 892 *
fd31fa4c 893 * @param bool $id
6a488035 894 *
a6c01b45
CW
895 * @return array
896 * array reference of all country ISO codes.
6a488035
TO
897 */
898 public static function &countryIsoCode($id = FALSE) {
899 if (!self::$countryIsoCode) {
900 self::populate(self::$countryIsoCode, 'CRM_Core_DAO_Country', TRUE, 'iso_code');
901 }
902 if ($id) {
903 if (array_key_exists($id, self::$countryIsoCode)) {
904 return self::$countryIsoCode[$id];
905 }
906 else {
7cdc9e9f 907 return CRM_Core_DAO::$_nullObject;
6a488035
TO
908 }
909 }
910 return self::$countryIsoCode;
911 }
912
6a488035 913 /**
c490a46a 914 * @deprecated Please use the buildOptions() method in the appropriate BAO object.
29494eef 915 *
6a488035
TO
916 * Get all groups from database
917 *
918 * The static array group is returned, and if it's
919 * called the first time, the <b>Group DAO</b> is used
920 * to get all the groups.
921 *
922 * Note: any database errors will be trapped by the DAO.
923 *
6a0b768e
TO
924 * @param string $groupType
925 * Type of group(Access/Mailing).
926 * @param bool $excludeHidden
927 * Exclude hidden groups.
6a488035 928 *
6a488035 929 *
a6c01b45
CW
930 * @return array
931 * array reference of all groups.
6a488035 932 */
addbec40 933 public static function allGroup($groupType = NULL, $excludeHidden = TRUE) {
1678a63b 934 if ($groupType === 'validate') {
935 // validate gets passed through from getoptions. Handle in the deprecated
936 // fn rather than change the new pattern.
937 $groupType = NULL;
938 }
6a488035 939 $condition = CRM_Contact_BAO_Group::groupTypeCondition($groupType, $excludeHidden);
addbec40 940 $groupKey = ($groupType ? $groupType : 'null') . !empty($excludeHidden);
6a488035 941
6d054a8e 942 if (!isset(Civi::$statics[__CLASS__]['groups']['allGroup'][$groupKey])) {
943 self::populate(Civi::$statics[__CLASS__]['groups']['allGroup'][$groupKey], 'CRM_Contact_DAO_Group', FALSE, 'title', 'is_active', $condition);
6a488035 944 }
6d054a8e 945 return Civi::$statics[__CLASS__]['groups']['allGroup'][$groupKey];
6a488035
TO
946 }
947
6a488035 948 /**
d09edf64 949 * Get all permissioned groups from database.
6a488035
TO
950 *
951 * The static array group is returned, and if it's
952 * called the first time, the <b>Group DAO</b> is used
953 * to get all the groups.
954 *
955 * Note: any database errors will be trapped by the DAO.
956 *
6a0b768e
TO
957 * @param string $groupType
958 * Type of group(Access/Mailing).
959 * @param bool $excludeHidden
960 * Exclude hidden groups.
dd244018 961 *
6a488035 962 *
a6c01b45
CW
963 * @return array
964 * array reference of all groups.
6a488035
TO
965 */
966 public static function group($groupType = NULL, $excludeHidden = TRUE) {
967 return CRM_Core_Permission::group($groupType, $excludeHidden);
968 }
969
24431f7b 970 /**
d09edf64 971 * Fetch groups in a nested format suitable for use in select form element.
24431f7b
CW
972 * @param bool $checkPermissions
973 * @param string|null $groupType
974 * @param bool $excludeHidden
975 * @return array
976 */
977 public static function nestedGroup($checkPermissions = TRUE, $groupType = NULL, $excludeHidden = TRUE) {
978 $groups = $checkPermissions ? self::group($groupType, $excludeHidden) : self::allGroup($groupType, $excludeHidden);
979 return CRM_Contact_BAO_Group::getGroupsHierarchy($groups, NULL, '&nbsp;&nbsp;', TRUE);
980 }
981
6a488035 982 /**
d09edf64 983 * Get all permissioned groups from database.
6a488035
TO
984 *
985 * The static array group is returned, and if it's
986 * called the first time, the <b>Group DAO</b> is used
987 * to get all the groups.
988 *
989 * Note: any database errors will be trapped by the DAO.
990 *
6a488035 991 *
dd244018
EM
992 * @param bool $onlyPublic
993 * @param null $groupType
994 * @param bool $excludeHidden
6a488035 995 *
a6c01b45
CW
996 * @return array
997 * array reference of all groups.
6a488035
TO
998 */
999 public static function &staticGroup($onlyPublic = FALSE, $groupType = NULL, $excludeHidden = TRUE) {
1000 if (!self::$staticGroup) {
1001 $condition = 'saved_search_id = 0 OR saved_search_id IS NULL';
1002 if ($onlyPublic) {
1003 $condition .= " AND visibility != 'User and User Admin Only'";
1004 }
1005
1006 if ($groupType) {
1007 $condition .= ' AND ' . CRM_Contact_BAO_Group::groupTypeCondition($groupType);
1008 }
1009
1010 if ($excludeHidden) {
1011 $condition .= ' AND is_hidden != 1 ';
1012 }
1013
1014 self::populate(self::$staticGroup, 'CRM_Contact_DAO_Group', FALSE, 'title', 'is_active', $condition, 'title');
1015 }
1016
1017 return self::$staticGroup;
1018 }
1019
6a488035
TO
1020 /**
1021 * Get all Relationship Types from database.
1022 *
1023 * The static array group is returned, and if it's
1024 * called the first time, the <b>RelationshipType DAO</b> is used
1025 * to get all the relationship types.
1026 *
1027 * Note: any database errors will be trapped by the DAO.
1028 *
6a0b768e
TO
1029 * @param string $valueColumnName
1030 * Db column name/label.
1031 * @param bool $reset
1032 * Reset relationship types if true.
bf48aa29 1033 * @param bool $isActive
fa8e67b8 1034 * Filter by is_active. NULL to disable.
6a488035 1035 *
a6c01b45
CW
1036 * @return array
1037 * array reference of all relationship types.
6a488035 1038 */
fa8e67b8
TO
1039 public static function &relationshipType($valueColumnName = 'label', $reset = FALSE, $isActive = 1) {
1040 $cacheKey = $valueColumnName . '::' . $isActive;
1041 if (!CRM_Utils_Array::value($cacheKey, self::$relationshipType) || $reset) {
1042 self::$relationshipType[$cacheKey] = array();
6a488035
TO
1043
1044 //now we have name/label columns CRM-3336
1045 $column_a_b = "{$valueColumnName}_a_b";
1046 $column_b_a = "{$valueColumnName}_b_a";
1047
1048 $relationshipTypeDAO = new CRM_Contact_DAO_RelationshipType();
1049 $relationshipTypeDAO->selectAdd();
1050 $relationshipTypeDAO->selectAdd("id, {$column_a_b}, {$column_b_a}, contact_type_a, contact_type_b, contact_sub_type_a, contact_sub_type_b");
fa8e67b8
TO
1051 if ($isActive !== NULL) {
1052 $relationshipTypeDAO->is_active = $isActive;
1053 }
6a488035
TO
1054 $relationshipTypeDAO->find();
1055 while ($relationshipTypeDAO->fetch()) {
1056
fa8e67b8 1057 self::$relationshipType[$cacheKey][$relationshipTypeDAO->id] = array(
05802b8e 1058 'id' => $relationshipTypeDAO->id,
6a488035
TO
1059 $column_a_b => $relationshipTypeDAO->$column_a_b,
1060 $column_b_a => $relationshipTypeDAO->$column_b_a,
1061 'contact_type_a' => "$relationshipTypeDAO->contact_type_a",
1062 'contact_type_b' => "$relationshipTypeDAO->contact_type_b",
1063 'contact_sub_type_a' => "$relationshipTypeDAO->contact_sub_type_a",
1064 'contact_sub_type_b' => "$relationshipTypeDAO->contact_sub_type_b",
1065 );
1066 }
1067 }
1068
fa8e67b8 1069 return self::$relationshipType[$cacheKey];
6a488035
TO
1070 }
1071
6a488035 1072 /**
100fef9d 1073 * Get all the ISO 4217 currency codes
6a488035
TO
1074 *
1075 * so far, we use this for validation only, so there's no point of putting this into the database
1076 *
6a488035 1077 *
a6c01b45
CW
1078 * @return array
1079 * array reference of all currency codes
6a488035
TO
1080 */
1081 public static function &currencyCode() {
1082 if (!self::$currencyCode) {
3b5223ee
HF
1083
1084 $query = "SELECT name FROM civicrm_currency";
1085 $dao = CRM_Core_DAO::executeQuery($query);
1086 $currencyCode = array();
1087 while ($dao->fetch()) {
1088 self::$currencyCode[] = $dao->name;
1089 }
6a488035
TO
1090 }
1091 return self::$currencyCode;
1092 }
1093
1094 /**
1095 * Get all the County from database.
1096 *
1097 * The static array county is returned, and if it's
1098 * called the first time, the <b>County DAO</b> is used
1099 * to get all the Counties.
1100 *
1101 * Note: any database errors will be trapped by the DAO.
1102 *
6a488035 1103 *
6a0b768e 1104 * @param bool|int $id - Optional id to return
6a488035 1105 *
a6c01b45
CW
1106 * @return array
1107 * array reference of all Counties
6a488035
TO
1108 */
1109 public static function &county($id = FALSE) {
1110 if (!self::$county) {
1111
1112 $config = CRM_Core_Config::singleton();
1113 // order by id so users who populate civicrm_county can have more control over sort by the order they load the counties
1114 self::populate(self::$county, 'CRM_Core_DAO_County', TRUE, 'name', NULL, NULL, 'id');
1115 }
1116 if ($id) {
1117 if (array_key_exists($id, self::$county)) {
1118 return self::$county[$id];
1119 }
1120 else {
7cdc9e9f 1121 return CRM_Core_DAO::$_nullObject;
6a488035
TO
1122 }
1123 }
1124 return self::$county;
1125 }
1126
6a488035 1127 /**
c490a46a 1128 * @deprecated Please use the buildOptions() method in the appropriate BAO object.
6a488035
TO
1129 * Get all active payment processors
1130 *
1131 * The static array paymentProcessor is returned
1132 *
6a488035 1133 *
6a0b768e
TO
1134 * @param bool $all
1135 * Get payment processors - default is to get only active ones.
1136 * @param bool $test
1137 * Get test payment processors.
6a488035 1138 *
77b97be7 1139 * @param null $additionalCond
6a488035 1140 *
a6c01b45
CW
1141 * @return array
1142 * array of all payment processors
6a488035 1143 */
d6944518 1144 public static function paymentProcessor($all = FALSE, $test = FALSE, $additionalCond = NULL) {
6a488035
TO
1145 $condition = "is_test = ";
1146 $condition .= ($test) ? '1' : '0';
1147
1148 if ($additionalCond) {
1149 $condition .= " AND ( $additionalCond ) ";
1150 }
1151
b44e3f84 1152 // CRM-7178. Make sure we only include payment processors valid in this
6a488035
TO
1153 // domain
1154 $condition .= " AND domain_id = " . CRM_Core_Config::domainID();
1155
1156 $cacheKey = $condition . '_' . (int) $all;
1157 if (!isset(self::$paymentProcessor[$cacheKey])) {
1158 self::populate(self::$paymentProcessor[$cacheKey], 'CRM_Financial_DAO_PaymentProcessor', $all, 'name', 'is_active', $condition, 'is_default desc, name');
1159 }
1160
1161 return self::$paymentProcessor[$cacheKey];
1162 }
1163
1164 /**
c490a46a 1165 * @deprecated Please use the buildOptions() method in the appropriate BAO object.
6a488035
TO
1166 *
1167 * The static array paymentProcessorType is returned
1168 *
6a488035 1169 *
6a0b768e
TO
1170 * @param bool $all
1171 * Get payment processors - default is to get only active ones.
6a488035 1172 *
100fef9d 1173 * @param int $id
77b97be7 1174 * @param string $return
6a488035 1175 *
a6c01b45
CW
1176 * @return array
1177 * array of all payment processor types
6a488035
TO
1178 */
1179 public static function &paymentProcessorType($all = FALSE, $id = NULL, $return = 'title') {
86bfa4f6 1180 $cacheKey = $id . '_' . $return;
6a488035
TO
1181 if (empty(self::$paymentProcessorType[$cacheKey])) {
1182 self::populate(self::$paymentProcessorType[$cacheKey], 'CRM_Financial_DAO_PaymentProcessorType', $all, $return, 'is_active', NULL, "is_default, $return", 'id');
1183 }
1184 if ($id && CRM_Utils_Array::value($id, self::$paymentProcessorType[$cacheKey])) {
1185 return self::$paymentProcessorType[$cacheKey][$id];
1186 }
1187 return self::$paymentProcessorType[$cacheKey];
1188 }
1189
1190 /**
d09edf64 1191 * Get all the World Regions from Database.
6a488035 1192 *
6a488035 1193 *
77b97be7
EM
1194 * @param bool $id
1195 *
a6c01b45
CW
1196 * @return array
1197 * array reference of all World Regions
6a488035
TO
1198 */
1199 public static function &worldRegion($id = FALSE) {
1200 if (!self::$worldRegions) {
1201 self::populate(self::$worldRegions, 'CRM_Core_DAO_Worldregion', TRUE, 'name', NULL, NULL, 'id');
1202 }
1203
1204 if ($id) {
1205 if (array_key_exists($id, self::$worldRegions)) {
1206 return self::$worldRegions[$id];
1207 }
1208 else {
7cdc9e9f 1209 return CRM_Core_DAO::$_nullObject;
6a488035
TO
1210 }
1211 }
1212
1213 return self::$worldRegions;
1214 }
1215
6a488035 1216 /**
c490a46a 1217 * @deprecated Please use the buildOptions() method in the appropriate BAO object.
29494eef 1218 *
6a488035
TO
1219 * Get all Activity Statuses.
1220 *
1221 * The static array activityStatus is returned
1222 *
6a488035 1223 *
77b97be7
EM
1224 * @param string $column
1225 *
a6c01b45
CW
1226 * @return array
1227 * array reference of all activity statuses
6a488035
TO
1228 */
1229 public static function &activityStatus($column = 'label') {
1230 if (NULL === self::$activityStatus) {
1231 self::$activityStatus = array();
1232 }
1233 if (!array_key_exists($column, self::$activityStatus)) {
1234 self::$activityStatus[$column] = array();
1235
1236 self::$activityStatus[$column] = CRM_Core_OptionGroup::values('activity_status', FALSE, FALSE, FALSE, NULL, $column);
1237 }
1238
1239 return self::$activityStatus[$column];
1240 }
1241
6a488035 1242 /**
c490a46a 1243 * @deprecated Please use the buildOptions() method in the appropriate BAO object.
a19392e7 1244 *
6a488035
TO
1245 * Get all Visibility levels.
1246 *
1247 * The static array visibility is returned
1248 *
6a488035 1249 *
77b97be7 1250 * @param string $column
6a488035 1251 *
a6c01b45
CW
1252 * @return array
1253 * array reference of all Visibility levels.
6a488035
TO
1254 */
1255 public static function &visibility($column = 'label') {
1256 if (!isset(self::$visibility)) {
2aa397bc 1257 self::$visibility = array();
6a488035
TO
1258 }
1259
1260 if (!isset(self::$visibility[$column])) {
1261 self::$visibility[$column] = CRM_Core_OptionGroup::values('visibility', FALSE, FALSE, FALSE, NULL, $column);
2aa397bc 1262 }
6a488035
TO
1263
1264 return self::$visibility[$column];
1265 }
1266
a0ee3941 1267 /**
100fef9d 1268 * @param int $countryID
a0ee3941
EM
1269 * @param string $field
1270 *
1271 * @return array
1272 */
6a488035
TO
1273 public static function &stateProvinceForCountry($countryID, $field = 'name') {
1274 static $_cache = NULL;
1275
1276 $cacheKey = "{$countryID}_{$field}";
1277 if (!$_cache) {
1278 $_cache = array();
1279 }
1280
1281 if (!empty($_cache[$cacheKey])) {
1282 return $_cache[$cacheKey];
1283 }
1284
1285 $query = "
1286SELECT civicrm_state_province.{$field} name, civicrm_state_province.id id
1287 FROM civicrm_state_province
1288WHERE country_id = %1
1289ORDER BY name";
1290 $params = array(
1291 1 => array(
1292 $countryID,
1293 'Integer',
1294 ),
1295 );
1296
1297 $dao = CRM_Core_DAO::executeQuery($query, $params);
1298
1299 $result = array();
1300 while ($dao->fetch()) {
1301 $result[$dao->id] = $dao->name;
1302 }
1303
1304 // localise the stateProvince names if in an non-en_US locale
1305 $config = CRM_Core_Config::singleton();
98466ff9 1306 $tsLocale = CRM_Core_I18n::getLocale();
6a488035
TO
1307 if ($tsLocale != '' and $tsLocale != 'en_US') {
1308 $i18n = CRM_Core_I18n::singleton();
1309 $i18n->localizeArray($result, array(
1310 'context' => 'province',
1311 ));
1312 $result = CRM_Utils_Array::asort($result);
1313 }
1314
1315 $_cache[$cacheKey] = $result;
1316
1317 CRM_Utils_Hook::buildStateProvinceForCountry($countryID, $result);
1318
1319 return $result;
1320 }
1321
a0ee3941 1322 /**
100fef9d 1323 * @param int $stateID
a0ee3941
EM
1324 *
1325 * @return array
1326 */
6a488035
TO
1327 public static function &countyForState($stateID) {
1328 if (is_array($stateID)) {
1329 $states = implode(", ", $stateID);
1330 $query = "
1331 SELECT civicrm_county.name name, civicrm_county.id id, civicrm_state_province.abbreviation abbreviation
1332 FROM civicrm_county
1333 LEFT JOIN civicrm_state_province ON civicrm_county.state_province_id = civicrm_state_province.id
1334 WHERE civicrm_county.state_province_id in ( $states )
1335 ORDER BY civicrm_state_province.abbreviation, civicrm_county.name";
1336
1337 $dao = CRM_Core_DAO::executeQuery($query);
1338
1339 $result = array();
1340 while ($dao->fetch()) {
1341 $result[$dao->id] = $dao->abbreviation . ': ' . $dao->name;
1342 }
1343 }
1344 else {
1345
1346 static $_cache = NULL;
1347
1348 $cacheKey = "{$stateID}_name";
1349 if (!$_cache) {
1350 $_cache = array();
1351 }
1352
1353 if (!empty($_cache[$cacheKey])) {
1354 return $_cache[$cacheKey];
1355 }
1356
1357 $query = "
1358 SELECT civicrm_county.name name, civicrm_county.id id
1359 FROM civicrm_county
1360 WHERE state_province_id = %1
1361 ORDER BY name";
1362 $params = array(
1363 1 => array(
1364 $stateID,
1365 'Integer',
1366 ),
1367 );
1368
1369 $dao = CRM_Core_DAO::executeQuery($query, $params);
1370
1371 $result = array();
1372 while ($dao->fetch()) {
1373 $result[$dao->id] = $dao->name;
1374 }
1375 }
1376
1377 return $result;
1378 }
1379
b05e28de
DL
1380 /**
1381 * Given a state ID return the country ID, this allows
1382 * us to populate forms and values for downstream code
1383 *
5a4f6742 1384 * @param int $stateID
b05e28de 1385 *
1273d77c 1386 * @return int|null
a6c01b45 1387 * the country id that the state belongs to
b05e28de 1388 */
00be9182 1389 public static function countryIDForStateID($stateID) {
b05e28de 1390 if (empty($stateID)) {
1273d77c 1391 return NULL;
b05e28de
DL
1392 }
1393
1394 $query = "
1395SELECT country_id
1396FROM civicrm_state_province
1397WHERE id = %1
1398";
1399 $params = array(1 => array($stateID, 'Integer'));
1400
1401 return CRM_Core_DAO::singleValueQuery($query, $params);
1402 }
1403
6a488035
TO
1404 /**
1405 * Get all types of Greetings.
1406 *
1407 * The static array of greeting is returned
1408 *
6a488035 1409 *
6a0b768e
TO
1410 * @param $filter
1411 * Get All Email Greetings - default is to get only active ones.
6a488035 1412 *
77b97be7 1413 * @param string $columnName
6a488035 1414 *
a6c01b45
CW
1415 * @return array
1416 * array reference of all greetings.
6a488035
TO
1417 */
1418 public static function greeting($filter, $columnName = 'label') {
5f35a2d9 1419 if (!isset(Civi::$statics[__CLASS__]['greeting'])) {
1420 Civi::$statics[__CLASS__]['greeting'] = array();
1421 }
1422
6a488035
TO
1423 $index = $filter['greeting_type'] . '_' . $columnName;
1424
1425 // also add contactType to the array
1426 $contactType = CRM_Utils_Array::value('contact_type', $filter);
1427 if ($contactType) {
1428 $index .= '_' . $contactType;
1429 }
1430
5f35a2d9 1431 if (!CRM_Utils_Array::value($index, Civi::$statics[__CLASS__]['greeting'])) {
6a488035
TO
1432 $filterCondition = NULL;
1433 if ($contactType) {
1434 $filterVal = 'v.filter =';
1435 switch ($contactType) {
1436 case 'Individual':
1437 $filterVal .= "1";
1438 break;
1439
1440 case 'Household':
1441 $filterVal .= "2";
1442 break;
1443
1444 case 'Organization':
1445 $filterVal .= "3";
1446 break;
1447 }
1448 $filterCondition .= "AND (v.filter = 0 OR {$filterVal}) ";
1449 }
1450
5f35a2d9 1451 Civi::$statics[__CLASS__]['greeting'][$index] = CRM_Core_OptionGroup::values($filter['greeting_type'], NULL, NULL, NULL, $filterCondition, $columnName);
6a488035
TO
1452 }
1453
5f35a2d9 1454 return Civi::$statics[__CLASS__]['greeting'][$index];
6a488035
TO
1455 }
1456
6a488035 1457 /**
d09edf64 1458 * Get all extensions.
6a488035
TO
1459 *
1460 * The static array extensions
1461 *
1462 * FIXME: This is called by civix but not by any core code. We
1463 * should provide an API call which civix can use instead.
1464 *
6a488035 1465 *
a6c01b45
CW
1466 * @return array
1467 * array($fullyQualifiedName => $label) list of extensions
6a488035
TO
1468 */
1469 public static function &getExtensions() {
1470 if (!self::$extensions) {
1471 self::$extensions = array();
1472 $sql = '
1473 SELECT full_name, label
1474 FROM civicrm_extension
1475 WHERE is_active = 1
1476 ';
1477 $dao = CRM_Core_DAO::executeQuery($sql);
1478 while ($dao->fetch()) {
1479 self::$extensions[$dao->full_name] = $dao->label;
1480 }
1481 }
1482
1483 return self::$extensions;
1484 }
1485
f743a6eb 1486 /**
d09edf64 1487 * Get all options values.
f743a6eb
CW
1488 *
1489 * The static array option values is returned
1490 *
f743a6eb 1491 *
6a0b768e
TO
1492 * @param bool $optionGroupName
1493 * Get All Option Group values- default is to get only active ones.
f743a6eb 1494 *
100fef9d 1495 * @param int $id
77b97be7 1496 * @param null $condition
f743a6eb 1497 *
a6c01b45
CW
1498 * @return array
1499 * array reference of all Option Group Name
f743a6eb 1500 */
2aa397bc 1501 public static function accountOptionValues($optionGroupName, $id = NULL, $condition = NULL) {
f743a6eb
CW
1502 $cacheKey = $optionGroupName . '_' . $condition;
1503 if (empty(self::$accountOptionValues[$cacheKey])) {
2aa397bc 1504 self::$accountOptionValues[$cacheKey] = CRM_Core_OptionGroup::values($optionGroupName, FALSE, FALSE, FALSE, $condition);
f743a6eb
CW
1505 }
1506 if ($id) {
1507 return CRM_Utils_Array::value($id, self::$accountOptionValues[$cacheKey]);
1508 }
1509
1510 return self::$accountOptionValues[$cacheKey];
1511 }
1512
6a488035
TO
1513 /**
1514 * Fetch the list of active extensions of type 'module'
1515 *
5a4f6742
CW
1516 * @param bool $fresh
1517 * Whether to forcibly reload extensions list from canonical store.
6a488035 1518 *
a6c01b45
CW
1519 * @return array
1520 * array(array('prefix' => $, 'file' => $))
6a488035
TO
1521 */
1522 public static function getModuleExtensions($fresh = FALSE) {
1523 return CRM_Extension_System::singleton()->getMapper()->getActiveModuleFiles($fresh);
1524 }
dc428161 1525
1526
1527 /**
d09edf64 1528 * Get all tax rates.
dc428161 1529 *
1530 * The static array tax rates is returned
1531 *
a6c01b45
CW
1532 * @return array
1533 * array list of tax rates with the financial type
dc428161 1534 */
1535 public static function getTaxRates() {
27864d8a 1536 if (!isset(Civi::$statics[__CLASS__]['taxRates'])) {
1537 Civi::$statics[__CLASS__]['taxRates'] = array();
a38ebe6a
SL
1538 $option = civicrm_api3('option_value', 'get', array(
1539 'sequential' => 1,
1540 'option_group_id' => 'account_relationship',
1541 'name' => 'Sales Tax Account is',
1542 ));
02b2d071 1543 $value = array();
a38ebe6a 1544 if ($option['count'] !== 0) {
02b2d071
SL
1545 if ($option['count'] > 1) {
1546 foreach ($option['values'] as $opt) {
1547 $value[] = $opt['value'];
1548 }
1549 }
1550 else {
1551 $value[] = $option['values'][0]['value'];
1552 }
1553 $where = 'AND efa.account_relationship IN (' . implode(', ', $value) . ' )';
a38ebe6a
SL
1554 }
1555 else {
1556 $where = '';
1557 }
dc428161 1558 $sql = "
1559 SELECT fa.tax_rate, efa.entity_id
1560 FROM civicrm_entity_financial_account efa
1561 INNER JOIN civicrm_financial_account fa ON fa.id = efa.financial_account_id
dc428161 1562 WHERE efa.entity_table = 'civicrm_financial_type'
a38ebe6a 1563 {$where}
dc428161 1564 AND fa.is_active = 1";
1565 $dao = CRM_Core_DAO::executeQuery($sql);
1566 while ($dao->fetch()) {
27864d8a 1567 Civi::$statics[__CLASS__]['taxRates'][$dao->entity_id] = $dao->tax_rate;
dc428161 1568 }
1569 }
1570
27864d8a 1571 return Civi::$statics[__CLASS__]['taxRates'];
dc428161 1572 }
96025800 1573
6a488035 1574}