CRM/Report add missing comment blocks
[civicrm-core.git] / CRM / Core / PseudoConstant.php
... / ...
CommitLineData
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * 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
46 * @copyright CiviCRM LLC (c) 2004-2014
47 * $Id$
48 *
49 */
50class CRM_Core_PseudoConstant {
51
52 /**
53 * static cache for pseudoconstant arrays
54 * @var array
55 * @static
56 */
57 private static $cache;
58
59 /**
60 * DEPRECATED. Please use the buildOptions() method in the appropriate BAO object.
61 *
62 * activity type
63 * @var array
64 * @static
65 */
66 private static $activityType;
67
68 /**
69 * states, provinces
70 * @var array
71 * @static
72 */
73 private static $stateProvince;
74
75 /**
76 * counties
77 * @var array
78 * @static
79 */
80 private static $county;
81
82 /**
83 * states/provinces abbreviations
84 * @var array
85 * @static
86 */
87 private static $stateProvinceAbbreviation;
88
89 /**
90 * country
91 * @var array
92 * @static
93 */
94 private static $country;
95
96 /**
97 * countryIsoCode
98 * @var array
99 * @static
100 */
101 private static $countryIsoCode;
102
103 /**
104 * DEPRECATED. Please use the buildOptions() method in the appropriate BAO object.
105 *
106 * group
107 * @var array
108 * @static
109 */
110 private static $group;
111
112 /**
113 * groupIterator
114 * @var mixed
115 * @static
116 */
117 private static $groupIterator;
118
119 /**
120 * relationshipType
121 * @var array
122 * @static
123 */
124 private static $relationshipType;
125
126 /**
127 * civicrm groups that are not smart groups
128 * @var array
129 * @static
130 */
131 private static $staticGroup;
132
133 /**
134 * currency codes
135 * @var array
136 * @static
137 */
138 private static $currencyCode;
139
140 /**
141 * payment processor
142 * @var array
143 * @static
144 */
145 private static $paymentProcessor;
146
147 /**
148 * payment processor types
149 * @var array
150 * @static
151 */
152 private static $paymentProcessorType;
153
154 /**
155 * World Region
156 * @var array
157 * @static
158 */
159 private static $worldRegions;
160
161 /**
162 * DEPRECATED. Please use the buildOptions() method in the appropriate BAO object.
163 *
164 * activity status
165 * @var array
166 * @static
167 */
168 private static $activityStatus;
169
170 /**
171 * Visibility
172 * @var array
173 * @static
174 */
175 private static $visibility;
176
177 /**
178 * Greetings
179 * @var array
180 * @static
181 */
182 private static $greeting;
183
184 /**
185 * Default Greetings
186 * @var array
187 * @static
188 */
189 private static $greetingDefaults;
190
191 /**
192 * Extensions of type module
193 * @var array
194 * @static
195 */
196 private static $extensions;
197
198 /**
199 * Financial Account Type
200 * @var array
201 * @static
202 */
203 private static $accountOptionValues;
204
205 /**
206 * Low-level option getter, rarely accessed directly.
207 * NOTE: Rather than calling this function directly use CRM_*_BAO_*::buildOptions()
208 * @see http://wiki.civicrm.org/confluence/display/CRMDOC/Pseudoconstant+%28option+list%29+Reference
209 *
210 * @param String $daoName
211 * @param String $fieldName
212 * @param Array $params
213 * - name string name of the option group
214 * - flip boolean results are return in id => label format if false
215 * if true, the results are reversed
216 * - grouping boolean if true, return the value in 'grouping' column (currently unsupported for tables other than option_value)
217 * - localize boolean if true, localize the results before returning
218 * - condition string|array add condition(s) to the sql query - will be concatenated using 'AND'
219 * - keyColumn string the column to use for 'id'
220 * - labelColumn string the column to use for 'label'
221 * - orderColumn string the column to use for sorting, defaults to 'weight' column if one exists, else defaults to labelColumn
222 * - onlyActive boolean return only the action option values
223 * - fresh boolean ignore cache entries and go back to DB
224 * @param String $context: Context string
225 *
226 * @return Array|bool - array on success, FALSE on error.
227 *
228 * @static
229 */
230 public static function get($daoName, $fieldName, $params = array(), $context = NULL) {
231 CRM_Core_DAO::buildOptionsContext($context);
232 $flip = !empty($params['flip']);
233 // Merge params with defaults
234 $params += array(
235 'grouping' => FALSE,
236 'localize' => FALSE,
237 'onlyActive' => ($context == 'validate' || $context == 'get') ? FALSE : TRUE,
238 'fresh' => FALSE,
239 );
240
241 // Custom fields are not in the schema
242 if (strpos($fieldName, 'custom_') === 0 && is_numeric($fieldName[7])) {
243 $customField = new CRM_Core_DAO_CustomField();
244 $customField->id = (int) substr($fieldName, 7);
245 $customField->find(TRUE);
246 $options = FALSE;
247
248 if (!empty($customField->option_group_id)) {
249 $options = CRM_Core_OptionGroup::valuesByID($customField->option_group_id,
250 FALSE,
251 $params['grouping'],
252 $params['localize'],
253 // Note: for custom fields the 'name' column is NULL
254 CRM_Utils_Array::value('labelColumn', $params, 'label'),
255 $params['onlyActive'],
256 $params['fresh']
257 );
258 }
259 else {
260 if ($customField->data_type === 'StateProvince') {
261 $options = self::stateProvince();
262 }
263 elseif ($customField->data_type === 'Country') {
264 $options = $context == 'validate' ? self::countryIsoCode() : self::country();
265 }
266 elseif ($customField->data_type === 'Boolean') {
267 $options = $context == 'validate' ? array(0, 1) : array(1 => ts('Yes'), 0 => ts('No'));
268 }
269 }
270 CRM_Utils_Hook::customFieldOptions($customField->id, $options, FALSE);
271 if ($options && $flip) {
272 $options = array_flip($options);
273 }
274 $customField->free();
275 return $options;
276 }
277
278 // Core field: load schema
279 $dao = new $daoName;
280 $fieldSpec = $dao->getFieldSpec($fieldName);
281 $dao->free();
282 // If neither worked then this field doesn't exist. Return false.
283 if (empty($fieldSpec)) {
284 return FALSE;
285 }
286
287 elseif (!empty($fieldSpec['pseudoconstant'])) {
288 $pseudoconstant = $fieldSpec['pseudoconstant'];
289
290 // if callback is specified..
291 if(!empty($pseudoconstant['callback'])) {
292 list($className, $fnName) = explode('::', $pseudoconstant['callback']);
293 if (method_exists($className, $fnName)) {
294 return call_user_func(array($className, $fnName));
295 }
296 }
297
298 // Merge params with schema defaults
299 $params += array(
300 'condition' => CRM_Utils_Array::value('condition', $pseudoconstant, array()),
301 'keyColumn' => CRM_Utils_Array::value('keyColumn', $pseudoconstant),
302 'labelColumn' => CRM_Utils_Array::value('labelColumn', $pseudoconstant),
303 );
304
305 // Fetch option group from option_value table
306 if(!empty($pseudoconstant['optionGroupName'])) {
307 if ($context == 'validate') {
308 $params['labelColumn'] = 'name';
309 }
310 // Call our generic fn for retrieving from the option_value table
311 return CRM_Core_OptionGroup::values(
312 $pseudoconstant['optionGroupName'],
313 $flip,
314 $params['grouping'],
315 $params['localize'],
316 $params['condition'] ? ' AND ' . implode(' AND ', (array) $params['condition']) : NULL,
317 $params['labelColumn'] ? $params['labelColumn'] : 'label',
318 $params['onlyActive'],
319 $params['fresh'],
320 $params['keyColumn'] ? $params['keyColumn'] : 'value'
321 );
322 }
323
324 // Fetch options from other tables
325 if (!empty($pseudoconstant['table'])) {
326 // Normalize params so the serialized cache string will be consistent.
327 CRM_Utils_Array::remove($params, 'flip', 'fresh');
328 ksort($params);
329 $cacheKey = $daoName . $fieldName . serialize($params);
330
331 // Retrieve cached options
332 if (isset(self::$cache[$cacheKey]) && empty($params['fresh'])) {
333 $output = self::$cache[$cacheKey];
334 }
335 else {
336 $daoName = CRM_Core_DAO_AllCoreTables::getClassForTable($pseudoconstant['table']);
337 if (!class_exists($daoName)) {
338 return FALSE;
339 }
340 // Get list of fields for the option table
341 $dao = new $daoName;
342 $availableFields = array_keys($dao->fieldKeys());
343 $dao->free();
344
345 $select = "SELECT %1 AS id, %2 AS label";
346 $from = "FROM %3";
347 $wheres = array();
348 $order = "ORDER BY %2";
349
350 // Use machine name instead of label in validate context
351 if ($context == 'validate') {
352 if (!empty($pseudoconstant['nameColumn'])) {
353 $params['labelColumn'] = $pseudoconstant['nameColumn'];
354 }
355 elseif (in_array('name', $availableFields)) {
356 $params['labelColumn'] = 'name';
357 }
358 }
359 // Condition param can be passed as an sql clause string or an array of clauses
360 if (!empty($params['condition'])) {
361 $wheres[] = implode(' AND ', (array) $params['condition']);
362 }
363 // onlyActive param will automatically filter on common flags
364 if (!empty($params['onlyActive'])) {
365 foreach (array('is_active' => 1, 'is_deleted' => 0, 'is_test' => 0) as $flag => $val) {
366 if (in_array($flag, $availableFields)) {
367 $wheres[] = "$flag = $val";
368 }
369 }
370 }
371 // Filter domain specific options
372 if (in_array('domain_id', $availableFields)) {
373 $wheres[] = 'domain_id = ' . CRM_Core_Config::domainID();
374 }
375 $queryParams = array(
376 1 => array($params['keyColumn'], 'String', CRM_Core_DAO::QUERY_FORMAT_NO_QUOTES),
377 2 => array($params['labelColumn'], 'String', CRM_Core_DAO::QUERY_FORMAT_NO_QUOTES),
378 3 => array($pseudoconstant['table'], 'String', CRM_Core_DAO::QUERY_FORMAT_NO_QUOTES),
379 );
380 // Add orderColumn param
381 if (!empty($params['orderColumn'])) {
382 $queryParams[4] = array($params['orderColumn'], 'String', CRM_Core_DAO::QUERY_FORMAT_NO_QUOTES);
383 $order = "ORDER BY %4";
384 }
385 // Support no sorting if $params[orderColumn] is FALSE
386 elseif (isset($params['orderColumn']) && $params['orderColumn'] === FALSE) {
387 $order = '';
388 }
389 // Default to 'weight' if that column exists
390 elseif (in_array('weight', $availableFields)) {
391 $order = "ORDER BY weight";
392 }
393
394 $output = array();
395 $query = "$select $from";
396 if ($wheres) {
397 $query .= " WHERE " . implode($wheres, ' AND ');
398 }
399 $query .= ' ' . $order;
400 $dao = CRM_Core_DAO::executeQuery($query, $queryParams);
401 while ($dao->fetch()) {
402 $output[$dao->id] = $dao->label;
403 }
404 $dao->free();
405 // Localize results
406 if (!empty($params['localize']) || $pseudoconstant['table'] == 'civicrm_country' || $pseudoconstant['table'] == 'civicrm_state_province') {
407 $I18nParams = array();
408 if ($pseudoconstant['table'] == 'civicrm_country') {
409 $I18nParams['context'] = 'country';
410 }
411 if ($pseudoconstant['table'] == 'civicrm_state_province') {
412 $I18nParams['context'] = 'province';
413 }
414 $i18n = CRM_Core_I18n::singleton();
415 $i18n->localizeArray($output, $I18nParams);
416 // Maintain sort by label
417 if ($order == "ORDER BY %2") {
418 CRM_Utils_Array::asort($output);
419 }
420 }
421 self::$cache[$cacheKey] = $output;
422 }
423 return $flip ? array_flip($output) : $output;
424 }
425 }
426
427 // Return "Yes" and "No" for boolean fields
428 elseif (CRM_Utils_Array::value('type', $fieldSpec) === CRM_Utils_Type::T_BOOLEAN) {
429 $output = $context == 'validate' ? array(0, 1) : array(1 => ts('Yes'), 0 => ts('No'));
430 return $flip ? array_flip($output) : $output;
431 }
432 // If we're still here, it's an error. Return FALSE.
433 return FALSE;
434 }
435
436 /**
437 * Fetch the translated label for a field given its key
438 *
439 * @param String $baoName
440 * @param String $fieldName
441 * @param String|Int $key
442 *
443 * TODO: Accept multivalued input?
444 *
445 * @return bool|null|string
446 * FALSE if the given field has no associated option list
447 * NULL if the given key has no corresponding option
448 * String if label is found
449 */
450 static function getLabel($baoName, $fieldName, $key) {
451 $values = $baoName::buildOptions($fieldName, 'get');
452 if ($values === FALSE) {
453 return FALSE;
454 }
455 return CRM_Utils_Array::value($key, $values);
456 }
457
458 /**
459 * Fetch the machine name for a field given its key
460 *
461 * @param String $baoName
462 * @param String $fieldName
463 * @param String|Int $key
464 *
465 * @return bool|null|string
466 * FALSE if the given field has no associated option list
467 * NULL if the given key has no corresponding option
468 * String if label is found
469 */
470 static function getName($baoName, $fieldName, $key) {
471 $values = $baoName::buildOptions($fieldName, 'validate');
472 if ($values === FALSE) {
473 return FALSE;
474 }
475 return CRM_Utils_Array::value($key, $values);
476 }
477
478 /**
479 * Fetch the key for a field option given its name
480 *
481 * @param String $baoName
482 * @param String $fieldName
483 * @param String|Int $value
484 *
485 * @return bool|null|string|number
486 * FALSE if the given field has no associated option list
487 * NULL if the given key has no corresponding option
488 * String|Number if key is found
489 */
490 static function getKey($baoName, $fieldName, $value) {
491 $values = $baoName::buildOptions($fieldName, 'validate');
492 if ($values === FALSE) {
493 return FALSE;
494 }
495 return CRM_Utils_Array::key($value, $values);
496 }
497
498 /**
499 * Lookup the admin page at which a field's option list can be edited
500 * @param $fieldSpec
501 * @return string|null
502 */
503 static function getOptionEditUrl($fieldSpec) {
504 // If it's an option group, that's easy
505 if (!empty($fieldSpec['pseudoconstant']['optionGroupName'])) {
506 return 'civicrm/admin/options/' . $fieldSpec['pseudoconstant']['optionGroupName'];
507 }
508 // For everything else...
509 elseif (!empty($fieldSpec['pseudoconstant']['table'])) {
510 $daoName = CRM_Core_DAO_AllCoreTables::getClassForTable($fieldSpec['pseudoconstant']['table']);
511 if (!$daoName) {
512 return NULL;
513 }
514 // We don't have good mapping so have to do a bit of guesswork from the menu
515 list(, $parent, , $child) = explode('_', $daoName);
516 $sql = "SELECT path FROM civicrm_menu
517 WHERE page_callback LIKE '%CRM_Admin_Page_$child%' OR page_callback LIKE '%CRM_{$parent}_Page_$child%'
518 ORDER BY page_callback
519 LIMIT 1";
520 return CRM_Core_Dao::singleValueQuery($sql);
521 }
522 return NULL;
523 }
524
525 /**
526 * DEPRECATED generic populate method
527 * All pseudoconstant functions that use this method are also deprecated.
528 *
529 * The static array $var is populated from the db
530 * using the <b>$name DAO</b>.
531 *
532 * Note: any database errors will be trapped by the DAO.
533 *
534 * @param array $var the associative array we will fill
535 * @param string $name the name of the DAO
536 * @param boolean $all get all objects. default is to get only active ones.
537 * @param string $retrieve the field that we are interested in (normally name, differs in some objects)
538 * @param string $filter the field that we want to filter the result set with
539 * @param string $condition the condition that gets passed to the final query as the WHERE clause
540 *
541 * @param null $orderby
542 * @param string $key
543 * @param null $force
544 *
545 * @return void
546 * @access public
547 * @static
548 */
549 public static function populate(
550 &$var,
551 $name,
552 $all = FALSE,
553 $retrieve = 'name',
554 $filter = 'is_active',
555 $condition = NULL,
556 $orderby = NULL,
557 $key = 'id',
558 $force = NULL
559 ) {
560 $cacheKey = "CRM_PC_{$name}_{$all}_{$key}_{$retrieve}_{$filter}_{$condition}_{$orderby}";
561 $cache = CRM_Utils_Cache::singleton();
562 $var = $cache->get($cacheKey);
563 if ($var && empty($force)) {
564 return $var;
565 }
566
567 $object = new $name ( );
568
569 $object->selectAdd();
570 $object->selectAdd("$key, $retrieve");
571 if ($condition) {
572 $object->whereAdd($condition);
573 }
574
575 if (!$orderby) {
576 $object->orderBy($retrieve);
577 }
578 else {
579 $object->orderBy($orderby);
580 }
581
582 if (!$all) {
583 $object->$filter = 1;
584 }
585
586 $object->find();
587 $var = array();
588 while ($object->fetch()) {
589 $var[$object->$key] = $object->$retrieve;
590 }
591
592 $cache->set($cacheKey, $var);
593 }
594
595 /**
596 * Flush given pseudoconstant so it can be reread from db
597 * nex time it's requested.
598 *
599 * @access public
600 * @static
601 *
602 * @param bool|string $name pseudoconstant to be flushed
603 */
604 public static function flush($name = 'cache') {
605 if (isset(self::$$name)) {
606 self::$$name = NULL;
607 }
608 if ($name == 'cache') {
609 CRM_Core_OptionGroup::flushAll();
610 }
611 }
612
613 /**
614 * DEPRECATED. Please use the buildOptions() method in the appropriate BAO object.
615 *
616 * Get all Activty types.
617 *
618 * The static array activityType is returned
619 *
620 * @internal param bool $all - get All Activity types - default is to get only active ones.
621 *
622 * @access public
623 * @static
624 *
625 * @return array - array reference of all activity types.
626 */
627 public static function &activityType() {
628 $args = func_get_args();
629 $all = CRM_Utils_Array::value(0, $args, TRUE);
630 $includeCaseActivities = CRM_Utils_Array::value(1, $args, FALSE);
631 $reset = CRM_Utils_Array::value(2, $args, FALSE);
632 $returnColumn = CRM_Utils_Array::value(3, $args, 'label');
633 $includeCampaignActivities = CRM_Utils_Array::value(4, $args, FALSE);
634 $onlyComponentActivities = CRM_Utils_Array::value(5, $args, FALSE);
635 $index = (int) $all . '_' . $returnColumn . '_' . (int) $includeCaseActivities;
636 $index .= '_' . (int) $includeCampaignActivities;
637 $index .= '_' . (int) $onlyComponentActivities;
638
639 if (NULL === self::$activityType) {
640 self::$activityType = array();
641 }
642
643 if (!isset(self::$activityType[$index]) || $reset) {
644 $condition = NULL;
645 if (!$all) {
646 $condition = 'AND filter = 0';
647 }
648 $componentClause = " v.component_id IS NULL";
649 if ($onlyComponentActivities) {
650 $componentClause = " v.component_id IS NOT NULL";
651 }
652
653 $componentIds = array();
654 $compInfo = CRM_Core_Component::getEnabledComponents();
655
656 // build filter for listing activity types only if their
657 // respective components are enabled
658 foreach ($compInfo as $compName => $compObj) {
659 if ($compName == 'CiviCase') {
660 if ($includeCaseActivities) {
661 $componentIds[] = $compObj->componentID;
662 }
663 }
664 elseif ($compName == 'CiviCampaign') {
665 if ($includeCampaignActivities) {
666 $componentIds[] = $compObj->componentID;
667 }
668 }
669 else {
670 $componentIds[] = $compObj->componentID;
671 }
672 }
673
674 if (count($componentIds)) {
675 $componentIds = implode(',', $componentIds);
676 $componentClause = " ($componentClause OR v.component_id IN ($componentIds))";
677 if ($onlyComponentActivities) {
678 $componentClause = " ( v.component_id IN ($componentIds ) )";
679 }
680 }
681 $condition = $condition . ' AND ' . $componentClause;
682
683 self::$activityType[$index] = CRM_Core_OptionGroup::values('activity_type', FALSE, FALSE, FALSE, $condition, $returnColumn);
684 }
685 return self::$activityType[$index];
686 }
687
688 /**
689 * Get all the State/Province from database.
690 *
691 * The static array stateProvince is returned, and if it's
692 * called the first time, the <b>State Province DAO</b> is used
693 * to get all the States.
694 *
695 * Note: any database errors will be trapped by the DAO.
696 *
697 * @access public
698 * @static
699 *
700 * @param bool|int $id - Optional id to return
701 *
702 * @param bool $limit
703 *
704 * @return array - array reference of all State/Provinces.
705 */
706 public static function &stateProvince($id = FALSE, $limit = TRUE) {
707 if (($id && !CRM_Utils_Array::value($id, self::$stateProvince)) || !self::$stateProvince || !$id) {
708 $whereClause = FALSE;
709 $config = CRM_Core_Config::singleton();
710 if ($limit) {
711 $countryIsoCodes = self::countryIsoCode();
712 $limitCodes = $config->provinceLimit();
713 $limitIds = array();
714 foreach ($limitCodes as $code) {
715 $limitIds = array_merge($limitIds, array_keys($countryIsoCodes, $code));
716 }
717 if (!empty($limitIds)) {
718 $whereClause = 'country_id IN (' . implode(', ', $limitIds) . ')';
719 }
720 else {
721 $whereClause = FALSE;
722 }
723 }
724 self::populate(self::$stateProvince, 'CRM_Core_DAO_StateProvince', TRUE, 'name', 'is_active', $whereClause);
725
726 // localise the province names if in an non-en_US locale
727 global $tsLocale;
728 if ($tsLocale != '' and $tsLocale != 'en_US') {
729 $i18n = CRM_Core_I18n::singleton();
730 $i18n->localizeArray(self::$stateProvince, array(
731 'context' => 'province',
732 ));
733 self::$stateProvince = CRM_Utils_Array::asort(self::$stateProvince);
734 }
735 }
736 if ($id) {
737 if (array_key_exists($id, self::$stateProvince)) {
738 return self::$stateProvince[$id];
739 }
740 else {
741 $result = NULL;
742 return $result;
743 }
744 }
745 return self::$stateProvince;
746 }
747
748 /**
749 * Get all the State/Province abbreviations from the database.
750 *
751 * Same as above, except gets the abbreviations instead of the names.
752 *
753 * @access public
754 * @static
755 *
756 * @param bool|int $id - Optional id to return
757 *
758 * @param bool $limit
759 *
760 * @return array - array reference of all State/Province abbreviations.
761 */
762 public static function &stateProvinceAbbreviation($id = FALSE, $limit = TRUE) {
763 if ($id > 1) {
764 $query = "
765SELECT abbreviation
766FROM civicrm_state_province
767WHERE id = %1";
768 $params = array(
769 1 => array(
770 $id,
771 'Integer',
772 ),
773 );
774 return CRM_Core_DAO::singleValueQuery($query, $params);
775 }
776
777 if (!self::$stateProvinceAbbreviation || !$id) {
778
779 $whereClause = FALSE;
780
781 if ($limit) {
782 $config = CRM_Core_Config::singleton();
783 $countryIsoCodes = self::countryIsoCode();
784 $limitCodes = $config->provinceLimit();
785 $limitIds = array();
786 foreach ($limitCodes as $code) {
787 $tmpArray = array_keys($countryIsoCodes, $code);
788
789 if (!empty($tmpArray)) {
790 $limitIds[] = array_shift($tmpArray);
791 }
792 }
793 if (!empty($limitIds)) {
794 $whereClause = 'country_id IN (' . implode(', ', $limitIds) . ')';
795 }
796 }
797 self::populate(self::$stateProvinceAbbreviation, 'CRM_Core_DAO_StateProvince', TRUE, 'abbreviation', 'is_active', $whereClause);
798 }
799
800 if ($id) {
801 if (array_key_exists($id, self::$stateProvinceAbbreviation)) {
802 return self::$stateProvinceAbbreviation[$id];
803 }
804 else {
805 $result = NULL;
806 return $result;
807 }
808 }
809 return self::$stateProvinceAbbreviation;
810 }
811
812 /**
813 * Get all the countries from database.
814 *
815 * The static array country is returned, and if it's
816 * called the first time, the <b>Country DAO</b> is used
817 * to get all the countries.
818 *
819 * Note: any database errors will be trapped by the DAO.
820 *
821 * @access public
822 * @static
823 *
824 * @param bool|int $id - Optional id to return
825 *
826 * @param bool $applyLimit
827 *
828 * @return array - array reference of all countries.
829 */
830 public static function country($id = FALSE, $applyLimit = TRUE) {
831 if (($id && !CRM_Utils_Array::value($id, self::$country)) || !self::$country || !$id) {
832
833 $config = CRM_Core_Config::singleton();
834 $limitCodes = array();
835
836 if ($applyLimit) {
837 // limit the country list to the countries specified in CIVICRM_COUNTRY_LIMIT
838 // (ensuring it's a subset of the legal values)
839 // K/P: We need to fix this, i dont think it works with new setting files
840 $limitCodes = $config->countryLimit();
841 if (!is_array($limitCodes)) {
842 $limitCodes = array(
843 $config->countryLimit => 1,
844 );
845 }
846
847 $limitCodes = array_intersect(self::countryIsoCode(), $limitCodes);
848 }
849
850 if (count($limitCodes)) {
851 $whereClause = "iso_code IN ('" . implode("', '", $limitCodes) . "')";
852 }
853 else {
854 $whereClause = NULL;
855 }
856
857 self::populate(self::$country, 'CRM_Core_DAO_Country', TRUE, 'name', 'is_active', $whereClause);
858
859 // if default country is set, percolate it to the top
860 if ($config->defaultContactCountry()) {
861 $countryIsoCodes = self::countryIsoCode();
862 $defaultID = array_search($config->defaultContactCountry(), $countryIsoCodes);
863 if ($defaultID !== FALSE) {
864 $default[$defaultID] = CRM_Utils_Array::value($defaultID, self::$country);
865 self::$country = $default + self::$country;
866 }
867 }
868
869 // localise the country names if in an non-en_US locale
870 global $tsLocale;
871 if ($tsLocale != '' and $tsLocale != 'en_US') {
872 $i18n = CRM_Core_I18n::singleton();
873 $i18n->localizeArray(self::$country, array(
874 'context' => 'country',
875 ));
876 self::$country = CRM_Utils_Array::asort(self::$country);
877 }
878 }
879 if ($id) {
880 if (array_key_exists($id, self::$country)) {
881 return self::$country[$id];
882 }
883 else {
884 return CRM_Core_DAO::$_nullObject;
885 }
886 }
887 return self::$country;
888 }
889
890 /**
891 * Get all the country ISO Code abbreviations from the database.
892 *
893 * The static array countryIsoCode is returned, and if it's
894 * called the first time, the <b>Country DAO</b> is used
895 * to get all the countries' ISO codes.
896 *
897 * Note: any database errors will be trapped by the DAO.
898 *
899 * @access public
900 * @static
901 *
902 * @param bool $id
903 *
904 * @return array - array reference of all country ISO codes.
905 */
906 public static function &countryIsoCode($id = FALSE) {
907 if (!self::$countryIsoCode) {
908 self::populate(self::$countryIsoCode, 'CRM_Core_DAO_Country', TRUE, 'iso_code');
909 }
910 if ($id) {
911 if (array_key_exists($id, self::$countryIsoCode)) {
912 return self::$countryIsoCode[$id];
913 }
914 else {
915 return CRM_Core_DAO::$_nullObject;
916 }
917 }
918 return self::$countryIsoCode;
919 }
920
921 /**
922 * DEPRECATED. Please use the buildOptions() method in the appropriate BAO object.
923 *
924 * Get all groups from database
925 *
926 * The static array group is returned, and if it's
927 * called the first time, the <b>Group DAO</b> is used
928 * to get all the groups.
929 *
930 * Note: any database errors will be trapped by the DAO.
931 *
932 * @param string $groupType type of group(Access/Mailing)
933 * @param bool|\boolen $excludeHidden exclude hidden groups.
934 *
935 * @access public
936 * @static
937 *
938 * @return array - array reference of all groups.
939 */
940 public static function &allGroup($groupType = NULL, $excludeHidden = TRUE) {
941 $condition = CRM_Contact_BAO_Group::groupTypeCondition($groupType, $excludeHidden);
942
943 if (!self::$group) {
944 self::$group = array();
945 }
946
947 $groupKey = $groupType ? $groupType : 'null';
948
949 if (!isset(self::$group[$groupKey])) {
950 self::$group[$groupKey] = NULL;
951 self::populate(self::$group[$groupKey], 'CRM_Contact_DAO_Group', FALSE, 'title', 'is_active', $condition);
952 }
953 return self::$group[$groupKey];
954 }
955
956 /**
957 * Create or get groups iterator (iterates over nested groups in a
958 * logical fashion)
959 *
960 * The GroupNesting instance is returned; it's created if this is being
961 * called for the first time
962 *
963 *
964 * @access public
965 * @static
966 *
967 * @param bool $styledLabels
968 *
969 * @return mixed - instance of CRM_Contact_BAO_GroupNesting
970 */
971 public static function &groupIterator($styledLabels = FALSE) {
972 if (!self::$groupIterator) {
973 /*
974 When used as an object, GroupNesting implements Iterator
975 and iterates nested groups in a logical manner for us
976 */
977 self::$groupIterator = new CRM_Contact_BAO_GroupNesting($styledLabels);
978 }
979 return self::$groupIterator;
980 }
981
982 /**
983 * DEPRECATED. Please use the buildOptions() method in the appropriate BAO object.
984 *
985 * Get all permissioned groups from database
986 *
987 * The static array group is returned, and if it's
988 * called the first time, the <b>Group DAO</b> is used
989 * to get all the groups.
990 *
991 * Note: any database errors will be trapped by the DAO.
992 *
993 * @param string $groupType type of group(Access/Mailing)
994 * @param bool|\boolen $excludeHidden exclude hidden groups.
995 *
996 * @access public
997 * @static
998 *
999 * @return array - array reference of all groups.
1000 */
1001 public static function group($groupType = NULL, $excludeHidden = TRUE) {
1002 return CRM_Core_Permission::group($groupType, $excludeHidden);
1003 }
1004
1005 /**
1006 * Get all permissioned groups from database
1007 *
1008 * The static array group is returned, and if it's
1009 * called the first time, the <b>Group DAO</b> is used
1010 * to get all the groups.
1011 *
1012 * Note: any database errors will be trapped by the DAO.
1013 *
1014 * @access public
1015 * @static
1016 *
1017 * @param bool $onlyPublic
1018 * @param null $groupType
1019 * @param bool $excludeHidden
1020 *
1021 * @return array - array reference of all groups.
1022 */
1023 public static function &staticGroup($onlyPublic = FALSE, $groupType = NULL, $excludeHidden = TRUE) {
1024 if (!self::$staticGroup) {
1025 $condition = 'saved_search_id = 0 OR saved_search_id IS NULL';
1026 if ($onlyPublic) {
1027 $condition .= " AND visibility != 'User and User Admin Only'";
1028 }
1029
1030 if ($groupType) {
1031 $condition .= ' AND ' . CRM_Contact_BAO_Group::groupTypeCondition($groupType);
1032 }
1033
1034 if ($excludeHidden) {
1035 $condition .= ' AND is_hidden != 1 ';
1036 }
1037
1038 self::populate(self::$staticGroup, 'CRM_Contact_DAO_Group', FALSE, 'title', 'is_active', $condition, 'title');
1039 }
1040
1041 return self::$staticGroup;
1042 }
1043
1044 /**
1045 * Get all Relationship Types from database.
1046 *
1047 * The static array group is returned, and if it's
1048 * called the first time, the <b>RelationshipType DAO</b> is used
1049 * to get all the relationship types.
1050 *
1051 * Note: any database errors will be trapped by the DAO.
1052 *
1053 * @param string $valueColumnName db column name/label.
1054 * @param boolean $reset reset relationship types if true
1055 *
1056 * @access public
1057 * @static
1058 *
1059 * @return array - array reference of all relationship types.
1060 */
1061 public static function &relationshipType($valueColumnName = 'label', $reset = FALSE) {
1062 if (!CRM_Utils_Array::value($valueColumnName, self::$relationshipType) || $reset) {
1063 self::$relationshipType[$valueColumnName] = array();
1064
1065 //now we have name/label columns CRM-3336
1066 $column_a_b = "{$valueColumnName}_a_b";
1067 $column_b_a = "{$valueColumnName}_b_a";
1068
1069 $relationshipTypeDAO = new CRM_Contact_DAO_RelationshipType();
1070 $relationshipTypeDAO->selectAdd();
1071 $relationshipTypeDAO->selectAdd("id, {$column_a_b}, {$column_b_a}, contact_type_a, contact_type_b, contact_sub_type_a, contact_sub_type_b");
1072 $relationshipTypeDAO->is_active = 1;
1073 $relationshipTypeDAO->find();
1074 while ($relationshipTypeDAO->fetch()) {
1075
1076 self::$relationshipType[$valueColumnName][$relationshipTypeDAO->id] = array(
1077 'id' => $relationshipTypeDAO->id,
1078 $column_a_b => $relationshipTypeDAO->$column_a_b,
1079 $column_b_a => $relationshipTypeDAO->$column_b_a,
1080 'contact_type_a' => "$relationshipTypeDAO->contact_type_a",
1081 'contact_type_b' => "$relationshipTypeDAO->contact_type_b",
1082 'contact_sub_type_a' => "$relationshipTypeDAO->contact_sub_type_a",
1083 'contact_sub_type_b' => "$relationshipTypeDAO->contact_sub_type_b",
1084 );
1085 }
1086 }
1087
1088 return self::$relationshipType[$valueColumnName];
1089 }
1090
1091 /**
1092 * get all the ISO 4217 currency codes
1093 *
1094 * so far, we use this for validation only, so there's no point of putting this into the database
1095 *
1096 * @access public
1097 *
1098 * @return array - array reference of all currency codes
1099 * @static
1100 */
1101 public static function &currencyCode() {
1102 if (!self::$currencyCode) {
1103 self::$currencyCode = array(
1104 'AFN',
1105 'ALL',
1106 'DZD',
1107 'USD',
1108 'EUR',
1109 'AOA',
1110 'XCD',
1111 'XCD',
1112 'ARS',
1113 'AMD',
1114 'AWG',
1115 'AUD',
1116 'EUR',
1117 'AZM',
1118 'BSD',
1119 'BHD',
1120 'BDT',
1121 'BBD',
1122 'BYR',
1123 'EUR',
1124 'BZD',
1125 'XOF',
1126 'BMD',
1127 'INR',
1128 'BTN',
1129 'BOB',
1130 'BOV',
1131 'BAM',
1132 'BWP',
1133 'NOK',
1134 'BRL',
1135 'USD',
1136 'BND',
1137 'BGN',
1138 'XOF',
1139 'BIF',
1140 'KHR',
1141 'XAF',
1142 'CAD',
1143 'CVE',
1144 'KYD',
1145 'XAF',
1146 'XAF',
1147 'CLP',
1148 'CLF',
1149 'CNY',
1150 'AUD',
1151 'AUD',
1152 'COP',
1153 'COU',
1154 'KMF',
1155 'XAF',
1156 'CDF',
1157 'NZD',
1158 'CRC',
1159 'XOF',
1160 'HRK',
1161 'CUP',
1162 'CYP',
1163 'CZK',
1164 'DKK',
1165 'DJF',
1166 'XCD',
1167 'DOP',
1168 'USD',
1169 'EGP',
1170 'SVC',
1171 'USD',
1172 'XAF',
1173 'ERN',
1174 'EEK',
1175 'ETB',
1176 'FKP',
1177 'DKK',
1178 'FJD',
1179 'EUR',
1180 'EUR',
1181 'EUR',
1182 'XPF',
1183 'EUR',
1184 'XAF',
1185 'GMD',
1186 'GEL',
1187 'EUR',
1188 'GHC',
1189 'GIP',
1190 'EUR',
1191 'DKK',
1192 'XCD',
1193 'EUR',
1194 'USD',
1195 'GTQ',
1196 'GNF',
1197 'GWP',
1198 'XOF',
1199 'GYD',
1200 'HTG',
1201 'USD',
1202 'AUD',
1203 'EUR',
1204 'HNL',
1205 'HKD',
1206 'HUF',
1207 'ISK',
1208 'INR',
1209 'IDR',
1210 'XDR',
1211 'IRR',
1212 'IQD',
1213 'EUR',
1214 'ILS',
1215 'EUR',
1216 'JMD',
1217 'JPY',
1218 'JOD',
1219 'KZT',
1220 'KES',
1221 'AUD',
1222 'KPW',
1223 'KRW',
1224 'KWD',
1225 'KGS',
1226 'LAK',
1227 'LVL',
1228 'LBP',
1229 'ZAR',
1230 'LSL',
1231 'LRD',
1232 'LYD',
1233 'CHF',
1234 'LTL',
1235 'EUR',
1236 'MOP',
1237 'MKD',
1238 'MGA',
1239 'MWK',
1240 'MYR',
1241 'MVR',
1242 'XOF',
1243 'MTL',
1244 'USD',
1245 'EUR',
1246 'MRO',
1247 'MUR',
1248 'EUR',
1249 'MXN',
1250 'MXV',
1251 'USD',
1252 'MDL',
1253 'EUR',
1254 'MNT',
1255 'XCD',
1256 'MAD',
1257 'MZM',
1258 'MMK',
1259 'ZAR',
1260 'NAD',
1261 'AUD',
1262 'NPR',
1263 'EUR',
1264 'ANG',
1265 'XPF',
1266 'NZD',
1267 'NIO',
1268 'XOF',
1269 'NGN',
1270 'NZD',
1271 'AUD',
1272 'USD',
1273 'NOK',
1274 'OMR',
1275 'PKR',
1276 'USD',
1277 'PAB',
1278 'USD',
1279 'PGK',
1280 'PYG',
1281 'PEN',
1282 'PHP',
1283 'NZD',
1284 'PLN',
1285 'EUR',
1286 'USD',
1287 'QAR',
1288 'EUR',
1289 'ROL',
1290 'RON',
1291 'RUB',
1292 'RWF',
1293 'SHP',
1294 'XCD',
1295 'XCD',
1296 'EUR',
1297 'XCD',
1298 'WST',
1299 'EUR',
1300 'STD',
1301 'SAR',
1302 'XOF',
1303 'CSD',
1304 'EUR',
1305 'SCR',
1306 'SLL',
1307 'SGD',
1308 'SKK',
1309 'SIT',
1310 'SBD',
1311 'SOS',
1312 'ZAR',
1313 'EUR',
1314 'LKR',
1315 'SDD',
1316 'SRD',
1317 'NOK',
1318 'SZL',
1319 'SEK',
1320 'CHF',
1321 'CHW',
1322 'CHE',
1323 'SYP',
1324 'TWD',
1325 'TJS',
1326 'TZS',
1327 'THB',
1328 'USD',
1329 'XOF',
1330 'NZD',
1331 'TOP',
1332 'TTD',
1333 'TND',
1334 'TRY',
1335 'TRL',
1336 'TMM',
1337 'USD',
1338 'AUD',
1339 'UGX',
1340 'UAH',
1341 'AED',
1342 'GBP',
1343 'USD',
1344 'USS',
1345 'USN',
1346 'USD',
1347 'UYU',
1348 'UZS',
1349 'VUV',
1350 'VEB',
1351 'VND',
1352 'USD',
1353 'USD',
1354 'XPF',
1355 'MAD',
1356 'YER',
1357 'ZMK',
1358 'ZWD',
1359 'XAU',
1360 'XBA',
1361 'XBB',
1362 'XBC',
1363 'XBD',
1364 'XPD',
1365 'XPT',
1366 'XAG',
1367 'XFU',
1368 'XFO',
1369 'XTS',
1370 'XXX',
1371 );
1372 }
1373 return self::$currencyCode;
1374 }
1375
1376 /**
1377 * Get all the County from database.
1378 *
1379 * The static array county is returned, and if it's
1380 * called the first time, the <b>County DAO</b> is used
1381 * to get all the Counties.
1382 *
1383 * Note: any database errors will be trapped by the DAO.
1384 *
1385 * @access public
1386 * @static
1387 *
1388 * @param bool|int $id - Optional id to return
1389 *
1390 * @return array - array reference of all Counties
1391 */
1392 public static function &county($id = FALSE) {
1393 if (!self::$county) {
1394
1395 $config = CRM_Core_Config::singleton();
1396 // order by id so users who populate civicrm_county can have more control over sort by the order they load the counties
1397 self::populate(self::$county, 'CRM_Core_DAO_County', TRUE, 'name', NULL, NULL, 'id');
1398 }
1399 if ($id) {
1400 if (array_key_exists($id, self::$county)) {
1401 return self::$county[$id];
1402 }
1403 else {
1404 return CRM_Core_DAO::$_nullObject;
1405 }
1406 }
1407 return self::$county;
1408 }
1409
1410 /**
1411 * DEPRECATED. Please use the buildOptions() method in the appropriate BAO object.
1412 * Get all active payment processors
1413 *
1414 * The static array paymentProcessor is returned
1415 *
1416 * @access public
1417 * @static
1418 *
1419 * @param boolean $all - get payment processors - default is to get only active ones.
1420 * @param boolean $test - get test payment processors
1421 *
1422 * @param null $additionalCond
1423 *
1424 * @return array - array of all payment processors
1425 */
1426 public static function &paymentProcessor($all = FALSE, $test = FALSE, $additionalCond = NULL) {
1427 $condition = "is_test = ";
1428 $condition .= ($test) ? '1' : '0';
1429
1430 if ($additionalCond) {
1431 $condition .= " AND ( $additionalCond ) ";
1432 }
1433
1434 // CRM-7178. Make sure we only include payment processors valid in ths
1435 // domain
1436 $condition .= " AND domain_id = " . CRM_Core_Config::domainID();
1437
1438 $cacheKey = $condition . '_' . (int) $all;
1439 if (!isset(self::$paymentProcessor[$cacheKey])) {
1440 self::populate(self::$paymentProcessor[$cacheKey], 'CRM_Financial_DAO_PaymentProcessor', $all, 'name', 'is_active', $condition, 'is_default desc, name');
1441 }
1442
1443 return self::$paymentProcessor[$cacheKey];
1444 }
1445
1446 /**
1447 * DEPRECATED. Please use the buildOptions() method in the appropriate BAO object.
1448 *
1449 * The static array paymentProcessorType is returned
1450 *
1451 * @access public
1452 * @static
1453 *
1454 * @param boolean $all - get payment processors - default is to get only active ones.
1455 *
1456 * @param null $id
1457 * @param string $return
1458 *
1459 * @return array - array of all payment processor types
1460 */
1461 public static function &paymentProcessorType($all = FALSE, $id = NULL, $return = 'title') {
1462 $cacheKey = $id . '_' .$return;
1463 if (empty(self::$paymentProcessorType[$cacheKey])) {
1464 self::populate(self::$paymentProcessorType[$cacheKey], 'CRM_Financial_DAO_PaymentProcessorType', $all, $return, 'is_active', NULL, "is_default, $return", 'id');
1465 }
1466 if ($id && CRM_Utils_Array::value($id, self::$paymentProcessorType[$cacheKey])) {
1467 return self::$paymentProcessorType[$cacheKey][$id];
1468 }
1469 return self::$paymentProcessorType[$cacheKey];
1470 }
1471
1472 /**
1473 * Get all the World Regions from Database
1474 *
1475 * @access public
1476 *
1477 * @param bool $id
1478 *
1479 * @return array - array reference of all World Regions
1480 * @static
1481 */
1482 public static function &worldRegion($id = FALSE) {
1483 if (!self::$worldRegions) {
1484 self::populate(self::$worldRegions, 'CRM_Core_DAO_Worldregion', TRUE, 'name', NULL, NULL, 'id');
1485 }
1486
1487 if ($id) {
1488 if (array_key_exists($id, self::$worldRegions)) {
1489 return self::$worldRegions[$id];
1490 }
1491 else {
1492 return CRM_Core_DAO::$_nullObject;
1493 }
1494 }
1495
1496 return self::$worldRegions;
1497 }
1498
1499 /**
1500 * DEPRECATED. Please use the buildOptions() method in the appropriate BAO object.
1501 *
1502 * Get all Activity Statuses.
1503 *
1504 * The static array activityStatus is returned
1505 *
1506 * @access public
1507 * @static
1508 *
1509 * @param string $column
1510 *
1511 * @return array - array reference of all activity statuses
1512 */
1513 public static function &activityStatus($column = 'label') {
1514 if (NULL === self::$activityStatus) {
1515 self::$activityStatus = array();
1516 }
1517 if (!array_key_exists($column, self::$activityStatus)) {
1518 self::$activityStatus[$column] = array();
1519
1520 self::$activityStatus[$column] = CRM_Core_OptionGroup::values('activity_status', FALSE, FALSE, FALSE, NULL, $column);
1521 }
1522
1523 return self::$activityStatus[$column];
1524 }
1525
1526 /**
1527 * DEPRECATED. Please use the buildOptions() method in the appropriate BAO object.
1528 *
1529 * Get all Visibility levels.
1530 *
1531 * The static array visibility is returned
1532 *
1533 * @access public
1534 * @static
1535 *
1536 * @param string $column
1537 *
1538 * @return array - array reference of all Visibility levels.
1539 */
1540 public static function &visibility($column = 'label') {
1541 if (!isset(self::$visibility)) {
1542 self::$visibility = array( );
1543 }
1544
1545 if (!isset(self::$visibility[$column])) {
1546 self::$visibility[$column] = CRM_Core_OptionGroup::values('visibility', FALSE, FALSE, FALSE, NULL, $column);
1547 }
1548
1549 return self::$visibility[$column];
1550 }
1551
1552 public static function &stateProvinceForCountry($countryID, $field = 'name') {
1553 static $_cache = NULL;
1554
1555 $cacheKey = "{$countryID}_{$field}";
1556 if (!$_cache) {
1557 $_cache = array();
1558 }
1559
1560 if (!empty($_cache[$cacheKey])) {
1561 return $_cache[$cacheKey];
1562 }
1563
1564 $query = "
1565SELECT civicrm_state_province.{$field} name, civicrm_state_province.id id
1566 FROM civicrm_state_province
1567WHERE country_id = %1
1568ORDER BY name";
1569 $params = array(
1570 1 => array(
1571 $countryID,
1572 'Integer',
1573 ),
1574 );
1575
1576 $dao = CRM_Core_DAO::executeQuery($query, $params);
1577
1578 $result = array();
1579 while ($dao->fetch()) {
1580 $result[$dao->id] = $dao->name;
1581 }
1582
1583 // localise the stateProvince names if in an non-en_US locale
1584 $config = CRM_Core_Config::singleton();
1585 global $tsLocale;
1586 if ($tsLocale != '' and $tsLocale != 'en_US') {
1587 $i18n = CRM_Core_I18n::singleton();
1588 $i18n->localizeArray($result, array(
1589 'context' => 'province',
1590 ));
1591 $result = CRM_Utils_Array::asort($result);
1592 }
1593
1594 $_cache[$cacheKey] = $result;
1595
1596 CRM_Utils_Hook::buildStateProvinceForCountry($countryID, $result);
1597
1598 return $result;
1599 }
1600
1601 public static function &countyForState($stateID) {
1602 if (is_array($stateID)) {
1603 $states = implode(", ", $stateID);
1604 $query = "
1605 SELECT civicrm_county.name name, civicrm_county.id id, civicrm_state_province.abbreviation abbreviation
1606 FROM civicrm_county
1607 LEFT JOIN civicrm_state_province ON civicrm_county.state_province_id = civicrm_state_province.id
1608 WHERE civicrm_county.state_province_id in ( $states )
1609 ORDER BY civicrm_state_province.abbreviation, civicrm_county.name";
1610
1611 $dao = CRM_Core_DAO::executeQuery($query);
1612
1613 $result = array();
1614 while ($dao->fetch()) {
1615 $result[$dao->id] = $dao->abbreviation . ': ' . $dao->name;
1616 }
1617 }
1618 else {
1619
1620 static $_cache = NULL;
1621
1622 $cacheKey = "{$stateID}_name";
1623 if (!$_cache) {
1624 $_cache = array();
1625 }
1626
1627 if (!empty($_cache[$cacheKey])) {
1628 return $_cache[$cacheKey];
1629 }
1630
1631 $query = "
1632 SELECT civicrm_county.name name, civicrm_county.id id
1633 FROM civicrm_county
1634 WHERE state_province_id = %1
1635 ORDER BY name";
1636 $params = array(
1637 1 => array(
1638 $stateID,
1639 'Integer',
1640 ),
1641 );
1642
1643 $dao = CRM_Core_DAO::executeQuery($query, $params);
1644
1645 $result = array();
1646 while ($dao->fetch()) {
1647 $result[$dao->id] = $dao->name;
1648 }
1649 }
1650
1651 return $result;
1652 }
1653
1654 /**
1655 * Given a state ID return the country ID, this allows
1656 * us to populate forms and values for downstream code
1657 *
1658 * @param $stateID int
1659 *
1660 * @return int the country id that the state belongs to
1661 * @static
1662 * @public
1663 */
1664 static function countryIDForStateID($stateID) {
1665 if (empty($stateID)) {
1666 return CRM_Core_DAO::$_nullObject;
1667 }
1668
1669 $query = "
1670SELECT country_id
1671FROM civicrm_state_province
1672WHERE id = %1
1673";
1674 $params = array(1 => array($stateID, 'Integer'));
1675
1676 return CRM_Core_DAO::singleValueQuery($query, $params);
1677 }
1678
1679 /**
1680 * Get all types of Greetings.
1681 *
1682 * The static array of greeting is returned
1683 *
1684 * @access public
1685 * @static
1686 *
1687 * @param $filter - get All Email Greetings - default is to get only active ones.
1688 *
1689 * @param string $columnName
1690 *
1691 * @return array - array reference of all greetings.
1692 */
1693 public static function greeting($filter, $columnName = 'label') {
1694 $index = $filter['greeting_type'] . '_' . $columnName;
1695
1696 // also add contactType to the array
1697 $contactType = CRM_Utils_Array::value('contact_type', $filter);
1698 if ($contactType) {
1699 $index .= '_' . $contactType;
1700 }
1701
1702 if (NULL === self::$greeting) {
1703 self::$greeting = array();
1704 }
1705
1706 if (!CRM_Utils_Array::value($index, self::$greeting)) {
1707 $filterCondition = NULL;
1708 if ($contactType) {
1709 $filterVal = 'v.filter =';
1710 switch ($contactType) {
1711 case 'Individual':
1712 $filterVal .= "1";
1713 break;
1714
1715 case 'Household':
1716 $filterVal .= "2";
1717 break;
1718
1719 case 'Organization':
1720 $filterVal .= "3";
1721 break;
1722 }
1723 $filterCondition .= "AND (v.filter = 0 OR {$filterVal}) ";
1724 }
1725
1726 self::$greeting[$index] = CRM_Core_OptionGroup::values($filter['greeting_type'], NULL, NULL, NULL, $filterCondition, $columnName);
1727 }
1728
1729 return self::$greeting[$index];
1730 }
1731
1732 /**
1733 * Construct array of default greeting values for contact type
1734 *
1735 * @access public
1736 * @static
1737 *
1738 * @return array - array reference of default greetings.
1739 *
1740 */
1741 public static function &greetingDefaults() {
1742 if (!self::$greetingDefaults) {
1743 $defaultGreetings = array();
1744 $contactTypes = self::get('CRM_Contact_DAO_Contact', 'contact_type', array('keyColumn' => 'id', 'labelColumn' => 'name'));
1745
1746 foreach ($contactTypes as $filter => $contactType) {
1747 $filterCondition = " AND (v.filter = 0 OR v.filter = $filter) AND v.is_default = 1 ";
1748
1749 foreach (CRM_Contact_BAO_Contact::$_greetingTypes as $greeting) {
1750 $tokenVal = CRM_Core_OptionGroup::values($greeting, NULL, NULL, NULL, $filterCondition, 'label');
1751 $defaultGreetings[$contactType][$greeting] = $tokenVal;
1752 }
1753 }
1754
1755 self::$greetingDefaults = $defaultGreetings;
1756 }
1757
1758 return self::$greetingDefaults;
1759 }
1760
1761 /**
1762 * Get all extensions
1763 *
1764 * The static array extensions
1765 *
1766 * FIXME: This is called by civix but not by any core code. We
1767 * should provide an API call which civix can use instead.
1768 *
1769 * @access public
1770 * @static
1771 *
1772 * @return array - array($fullyQualifiedName => $label) list of extensions
1773 */
1774 public static function &getExtensions() {
1775 if (!self::$extensions) {
1776 self::$extensions = array();
1777 $sql = '
1778 SELECT full_name, label
1779 FROM civicrm_extension
1780 WHERE is_active = 1
1781 ';
1782 $dao = CRM_Core_DAO::executeQuery($sql);
1783 while ($dao->fetch()) {
1784 self::$extensions[$dao->full_name] = $dao->label;
1785 }
1786 }
1787
1788 return self::$extensions;
1789 }
1790
1791 /**
1792 * Get all options values
1793 *
1794 * The static array option values is returned
1795 *
1796 * @access public
1797 * @static
1798 *
1799 * @param boolean $optionGroupName - get All Option Group values- default is to get only active ones.
1800 *
1801 * @param null $id
1802 * @param null $condition
1803 *
1804 * @return array - array reference of all Option Group Name
1805 */
1806 public static function accountOptionValues($optionGroupName, $id = null, $condition = null) {
1807 $cacheKey = $optionGroupName . '_' . $condition;
1808 if (empty(self::$accountOptionValues[$cacheKey])) {
1809 self::$accountOptionValues[$cacheKey] = CRM_Core_OptionGroup::values($optionGroupName, false, false, false, $condition);
1810 }
1811 if ($id) {
1812 return CRM_Utils_Array::value($id, self::$accountOptionValues[$cacheKey]);
1813 }
1814
1815 return self::$accountOptionValues[$cacheKey];
1816 }
1817
1818 /**
1819 * Fetch the list of active extensions of type 'module'
1820 *
1821 * @param $fresh bool whether to forcibly reload extensions list from canonical store
1822 * @access public
1823 * @static
1824 *
1825 * @return array - array(array('prefix' => $, 'file' => $))
1826 */
1827 public static function getModuleExtensions($fresh = FALSE) {
1828 return CRM_Extension_System::singleton()->getMapper()->getActiveModuleFiles($fresh);
1829 }
1830}
1831