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