3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
30 * Stores all constants and pseudo constants for CRM application.
32 * examples of constants are "Contact Type" which will always be either
33 * 'Individual', 'Household', 'Organization'.
35 * pseudo constants are entities from the database whose values rarely
36 * change. examples are list of countries, states, location types,
39 * currently we're getting the data from the underlying database. this
40 * will be reworked to use caching.
42 * Note: All pseudoconstants should be uninitialized or default to NULL.
43 * This provides greater consistency/predictability after flushing.
46 * @copyright CiviCRM LLC (c) 2004-2014
50 class CRM_Core_PseudoConstant
{
53 * static cache for pseudoconstant arrays
57 private static $cache;
60 * DEPRECATED. Please use the buildOptions() method in the appropriate BAO object.
66 private static $activityType;
73 private static $stateProvince;
80 private static $county;
83 * states/provinces abbreviations
87 private static $stateProvinceAbbreviation;
94 private static $country;
101 private static $countryIsoCode;
104 * DEPRECATED. Please use the buildOptions() method in the appropriate BAO object.
110 private static $group;
117 private static $groupIterator;
124 private static $relationshipType;
127 * civicrm groups that are not smart groups
131 private static $staticGroup;
138 private static $currencyCode;
145 private static $paymentProcessor;
148 * payment processor types
152 private static $paymentProcessorType;
159 private static $worldRegions;
162 * DEPRECATED. Please use the buildOptions() method in the appropriate BAO object.
168 private static $activityStatus;
175 private static $visibility;
182 private static $greeting;
189 private static $greetingDefaults;
192 * Extensions of type module
196 private static $extensions;
199 * Financial Account Type
203 private static $accountOptionValues;
210 private static $taxRates;
213 * Low-level option getter, rarely accessed directly.
214 * NOTE: Rather than calling this function directly use CRM_*_BAO_*::buildOptions()
215 * @see http://wiki.civicrm.org/confluence/display/CRMDOC/Pseudoconstant+%28option+list%29+Reference
217 * @param String $daoName
218 * @param String $fieldName
219 * @param Array $params
220 * - name string name of the option group
221 * - flip boolean results are return in id => label format if false
222 * if true, the results are reversed
223 * - grouping boolean if true, return the value in 'grouping' column (currently unsupported for tables other than option_value)
224 * - localize boolean if true, localize the results before returning
225 * - condition string|array add condition(s) to the sql query - will be concatenated using 'AND'
226 * - keyColumn string the column to use for 'id'
227 * - labelColumn string the column to use for 'label'
228 * - orderColumn string the column to use for sorting, defaults to 'weight' column if one exists, else defaults to labelColumn
229 * - onlyActive boolean return only the action option values
230 * - fresh boolean ignore cache entries and go back to DB
231 * @param String $context: Context string
233 * @return Array|bool - array on success, FALSE on error.
237 public static function get($daoName, $fieldName, $params = array(), $context = NULL) {
238 CRM_Core_DAO
::buildOptionsContext($context);
239 $flip = !empty($params['flip']);
240 // Merge params with defaults
244 'onlyActive' => ($context == 'validate' ||
$context == 'get') ?
FALSE : TRUE,
248 // Custom fields are not in the schema
249 if (strpos($fieldName, 'custom_') === 0 && is_numeric($fieldName[7])) {
250 $customField = new CRM_Core_DAO_CustomField();
251 $customField->id
= (int) substr($fieldName, 7);
252 $customField->find(TRUE);
255 if (!empty($customField->option_group_id
)) {
256 $options = CRM_Core_OptionGroup
::valuesByID($customField->option_group_id
,
260 // Note: for custom fields the 'name' column is NULL
261 CRM_Utils_Array
::value('labelColumn', $params, 'label'),
262 $params['onlyActive'],
267 if ($customField->data_type
=== 'StateProvince') {
268 $options = self
::stateProvince();
270 elseif ($customField->data_type
=== 'Country') {
271 $options = $context == 'validate' ? self
::countryIsoCode() : self
::country();
273 elseif ($customField->data_type
=== 'Boolean') {
274 $options = $context == 'validate' ?
array(0, 1) : array(1 => ts('Yes'), 0 => ts('No'));
277 CRM_Utils_Hook
::customFieldOptions($customField->id
, $options, FALSE);
278 if ($options && $flip) {
279 $options = array_flip($options);
281 $customField->free();
285 // Core field: load schema
287 $fieldSpec = $dao->getFieldSpec($fieldName);
289 // If neither worked then this field doesn't exist. Return false.
290 if (empty($fieldSpec)) {
294 elseif (!empty($fieldSpec['pseudoconstant'])) {
295 $pseudoconstant = $fieldSpec['pseudoconstant'];
297 // if callback is specified..
298 if(!empty($pseudoconstant['callback'])) {
299 list($className, $fnName) = explode('::', $pseudoconstant['callback']);
300 if (method_exists($className, $fnName)) {
301 return call_user_func(array($className, $fnName));
305 // Merge params with schema defaults
307 'condition' => CRM_Utils_Array
::value('condition', $pseudoconstant, array()),
308 'keyColumn' => CRM_Utils_Array
::value('keyColumn', $pseudoconstant),
309 'labelColumn' => CRM_Utils_Array
::value('labelColumn', $pseudoconstant),
312 // Fetch option group from option_value table
313 if(!empty($pseudoconstant['optionGroupName'])) {
314 if ($context == 'validate') {
315 $params['labelColumn'] = 'name';
317 // Call our generic fn for retrieving from the option_value table
318 return CRM_Core_OptionGroup
::values(
319 $pseudoconstant['optionGroupName'],
323 $params['condition'] ?
' AND ' . implode(' AND ', (array) $params['condition']) : NULL,
324 $params['labelColumn'] ?
$params['labelColumn'] : 'label',
325 $params['onlyActive'],
327 $params['keyColumn'] ?
$params['keyColumn'] : 'value'
331 // Fetch options from other tables
332 if (!empty($pseudoconstant['table'])) {
333 // Normalize params so the serialized cache string will be consistent.
334 CRM_Utils_Array
::remove($params, 'flip', 'fresh');
336 $cacheKey = $daoName . $fieldName . serialize($params);
338 // Retrieve cached options
339 if (isset(self
::$cache[$cacheKey]) && empty($params['fresh'])) {
340 $output = self
::$cache[$cacheKey];
343 $daoName = CRM_Core_DAO_AllCoreTables
::getClassForTable($pseudoconstant['table']);
344 if (!class_exists($daoName)) {
347 // Get list of fields for the option table
349 $availableFields = array_keys($dao->fieldKeys());
352 $select = "SELECT %1 AS id, %2 AS label";
355 $order = "ORDER BY %2";
357 // Use machine name instead of label in validate context
358 if ($context == 'validate') {
359 if (!empty($pseudoconstant['nameColumn'])) {
360 $params['labelColumn'] = $pseudoconstant['nameColumn'];
362 elseif (in_array('name', $availableFields)) {
363 $params['labelColumn'] = 'name';
366 // Condition param can be passed as an sql clause string or an array of clauses
367 if (!empty($params['condition'])) {
368 $wheres[] = implode(' AND ', (array) $params['condition']);
370 // onlyActive param will automatically filter on common flags
371 if (!empty($params['onlyActive'])) {
372 foreach (array('is_active' => 1, 'is_deleted' => 0, 'is_test' => 0) as $flag => $val) {
373 if (in_array($flag, $availableFields)) {
374 $wheres[] = "$flag = $val";
378 // Filter domain specific options
379 if (in_array('domain_id', $availableFields)) {
380 $wheres[] = 'domain_id = ' . CRM_Core_Config
::domainID();
382 $queryParams = array(
383 1 => array($params['keyColumn'], 'String', CRM_Core_DAO
::QUERY_FORMAT_NO_QUOTES
),
384 2 => array($params['labelColumn'], 'String', CRM_Core_DAO
::QUERY_FORMAT_NO_QUOTES
),
385 3 => array($pseudoconstant['table'], 'String', CRM_Core_DAO
::QUERY_FORMAT_NO_QUOTES
),
387 // Add orderColumn param
388 if (!empty($params['orderColumn'])) {
389 $queryParams[4] = array($params['orderColumn'], 'String', CRM_Core_DAO
::QUERY_FORMAT_NO_QUOTES
);
390 $order = "ORDER BY %4";
392 // Support no sorting if $params[orderColumn] is FALSE
393 elseif (isset($params['orderColumn']) && $params['orderColumn'] === FALSE) {
396 // Default to 'weight' if that column exists
397 elseif (in_array('weight', $availableFields)) {
398 $order = "ORDER BY weight";
402 $query = "$select $from";
404 $query .= " WHERE " . implode($wheres, ' AND ');
406 $query .= ' ' . $order;
407 $dao = CRM_Core_DAO
::executeQuery($query, $queryParams);
408 while ($dao->fetch()) {
409 $output[$dao->id
] = $dao->label
;
413 if (!empty($params['localize']) ||
$pseudoconstant['table'] == 'civicrm_country' ||
$pseudoconstant['table'] == 'civicrm_state_province') {
414 $I18nParams = array();
415 if ($pseudoconstant['table'] == 'civicrm_country') {
416 $I18nParams['context'] = 'country';
418 if ($pseudoconstant['table'] == 'civicrm_state_province') {
419 $I18nParams['context'] = 'province';
421 $i18n = CRM_Core_I18n
::singleton();
422 $i18n->localizeArray($output, $I18nParams);
423 // Maintain sort by label
424 if ($order == "ORDER BY %2") {
425 CRM_Utils_Array
::asort($output);
428 self
::$cache[$cacheKey] = $output;
430 return $flip ?
array_flip($output) : $output;
434 // Return "Yes" and "No" for boolean fields
435 elseif (CRM_Utils_Array
::value('type', $fieldSpec) === CRM_Utils_Type
::T_BOOLEAN
) {
436 $output = $context == 'validate' ?
array(0, 1) : array(1 => ts('Yes'), 0 => ts('No'));
437 return $flip ?
array_flip($output) : $output;
439 // If we're still here, it's an error. Return FALSE.
444 * Fetch the translated label for a field given its key
446 * @param String $baoName
447 * @param String $fieldName
448 * @param String|Int $key
450 * TODO: Accept multivalued input?
452 * @return bool|null|string
453 * FALSE if the given field has no associated option list
454 * NULL if the given key has no corresponding option
455 * String if label is found
457 static function getLabel($baoName, $fieldName, $key) {
458 $values = $baoName::buildOptions($fieldName, 'get');
459 if ($values === FALSE) {
462 return CRM_Utils_Array
::value($key, $values);
466 * Fetch the machine name for a field given its key
468 * @param String $baoName
469 * @param String $fieldName
470 * @param String|Int $key
472 * @return bool|null|string
473 * FALSE if the given field has no associated option list
474 * NULL if the given key has no corresponding option
475 * String if label is found
477 static function getName($baoName, $fieldName, $key) {
478 $values = $baoName::buildOptions($fieldName, 'validate');
479 if ($values === FALSE) {
482 return CRM_Utils_Array
::value($key, $values);
486 * Fetch the key for a field option given its name
488 * @param String $baoName
489 * @param String $fieldName
490 * @param String|Int $value
492 * @return bool|null|string|number
493 * FALSE if the given field has no associated option list
494 * NULL if the given key has no corresponding option
495 * String|Number if key is found
497 static function getKey($baoName, $fieldName, $value) {
498 $values = $baoName::buildOptions($fieldName, 'validate');
499 if ($values === FALSE) {
502 return CRM_Utils_Array
::key($value, $values);
506 * Lookup the admin page at which a field's option list can be edited
508 * @return string|null
510 static function getOptionEditUrl($fieldSpec) {
511 // If it's an option group, that's easy
512 if (!empty($fieldSpec['pseudoconstant']['optionGroupName'])) {
513 return 'civicrm/admin/options/' . $fieldSpec['pseudoconstant']['optionGroupName'];
515 // For everything else...
516 elseif (!empty($fieldSpec['pseudoconstant']['table'])) {
517 $daoName = CRM_Core_DAO_AllCoreTables
::getClassForTable($fieldSpec['pseudoconstant']['table']);
521 // We don't have good mapping so have to do a bit of guesswork from the menu
522 list(, $parent, , $child) = explode('_', $daoName);
523 $sql = "SELECT path FROM civicrm_menu
524 WHERE page_callback LIKE '%CRM_Admin_Page_$child%' OR page_callback LIKE '%CRM_{$parent}_Page_$child%'
525 ORDER BY page_callback
527 return CRM_Core_Dao
::singleValueQuery($sql);
533 * DEPRECATED generic populate method
534 * All pseudoconstant functions that use this method are also deprecated.
536 * The static array $var is populated from the db
537 * using the <b>$name DAO</b>.
539 * Note: any database errors will be trapped by the DAO.
541 * @param array $var the associative array we will fill
542 * @param string $name the name of the DAO
543 * @param boolean $all get all objects. default is to get only active ones.
544 * @param string $retrieve the field that we are interested in (normally name, differs in some objects)
545 * @param string $filter the field that we want to filter the result set with
546 * @param string $condition the condition that gets passed to the final query as the WHERE clause
548 * @param null $orderby
556 public static function populate(
561 $filter = 'is_active',
567 $cacheKey = "CRM_PC_{$name}_{$all}_{$key}_{$retrieve}_{$filter}_{$condition}_{$orderby}";
568 $cache = CRM_Utils_Cache
::singleton();
569 $var = $cache->get($cacheKey);
570 if ($var && empty($force)) {
574 $object = new $name ( );
576 $object->selectAdd();
577 $object->selectAdd("$key, $retrieve");
579 $object->whereAdd($condition);
583 $object->orderBy($retrieve);
586 $object->orderBy($orderby);
590 $object->$filter = 1;
595 while ($object->fetch()) {
596 $var[$object->$key] = $object->$retrieve;
599 $cache->set($cacheKey, $var);
603 * Flush given pseudoconstant so it can be reread from db
604 * nex time it's requested.
609 * @param bool|string $name pseudoconstant to be flushed
611 public static function flush($name = 'cache') {
612 if (isset(self
::$
$name)) {
615 if ($name == 'cache') {
616 CRM_Core_OptionGroup
::flushAll();
621 * DEPRECATED. Please use the buildOptions() method in the appropriate BAO object.
623 * Get all Activty types.
625 * The static array activityType is returned
627 * @internal param bool $all - get All Activity types - default is to get only active ones.
632 * @return array - array reference of all activity types.
634 public static function &activityType() {
635 $args = func_get_args();
636 $all = CRM_Utils_Array
::value(0, $args, TRUE);
637 $includeCaseActivities = CRM_Utils_Array
::value(1, $args, FALSE);
638 $reset = CRM_Utils_Array
::value(2, $args, FALSE);
639 $returnColumn = CRM_Utils_Array
::value(3, $args, 'label');
640 $includeCampaignActivities = CRM_Utils_Array
::value(4, $args, FALSE);
641 $onlyComponentActivities = CRM_Utils_Array
::value(5, $args, FALSE);
642 $index = (int) $all . '_' . $returnColumn . '_' . (int) $includeCaseActivities;
643 $index .= '_' . (int) $includeCampaignActivities;
644 $index .= '_' . (int) $onlyComponentActivities;
646 if (NULL === self
::$activityType) {
647 self
::$activityType = array();
650 if (!isset(self
::$activityType[$index]) ||
$reset) {
653 $condition = 'AND filter = 0';
655 $componentClause = " v.component_id IS NULL";
656 if ($onlyComponentActivities) {
657 $componentClause = " v.component_id IS NOT NULL";
660 $componentIds = array();
661 $compInfo = CRM_Core_Component
::getEnabledComponents();
663 // build filter for listing activity types only if their
664 // respective components are enabled
665 foreach ($compInfo as $compName => $compObj) {
666 if ($compName == 'CiviCase') {
667 if ($includeCaseActivities) {
668 $componentIds[] = $compObj->componentID
;
671 elseif ($compName == 'CiviCampaign') {
672 if ($includeCampaignActivities) {
673 $componentIds[] = $compObj->componentID
;
677 $componentIds[] = $compObj->componentID
;
681 if (count($componentIds)) {
682 $componentIds = implode(',', $componentIds);
683 $componentClause = " ($componentClause OR v.component_id IN ($componentIds))";
684 if ($onlyComponentActivities) {
685 $componentClause = " ( v.component_id IN ($componentIds ) )";
688 $condition = $condition . ' AND ' . $componentClause;
690 self
::$activityType[$index] = CRM_Core_OptionGroup
::values('activity_type', FALSE, FALSE, FALSE, $condition, $returnColumn);
692 return self
::$activityType[$index];
696 * Get all the State/Province from database.
698 * The static array stateProvince is returned, and if it's
699 * called the first time, the <b>State Province DAO</b> is used
700 * to get all the States.
702 * Note: any database errors will be trapped by the DAO.
707 * @param bool|int $id - Optional id to return
711 * @return array - array reference of all State/Provinces.
713 public static function &stateProvince($id = FALSE, $limit = TRUE) {
714 if (($id && !CRM_Utils_Array
::value($id, self
::$stateProvince)) ||
!self
::$stateProvince ||
!$id) {
715 $whereClause = FALSE;
716 $config = CRM_Core_Config
::singleton();
718 $countryIsoCodes = self
::countryIsoCode();
719 $limitCodes = $config->provinceLimit();
721 foreach ($limitCodes as $code) {
722 $limitIds = array_merge($limitIds, array_keys($countryIsoCodes, $code));
724 if (!empty($limitIds)) {
725 $whereClause = 'country_id IN (' . implode(', ', $limitIds) . ')';
728 $whereClause = FALSE;
731 self
::populate(self
::$stateProvince, 'CRM_Core_DAO_StateProvince', TRUE, 'name', 'is_active', $whereClause);
733 // localise the province names if in an non-en_US locale
735 if ($tsLocale != '' and $tsLocale != 'en_US') {
736 $i18n = CRM_Core_I18n
::singleton();
737 $i18n->localizeArray(self
::$stateProvince, array(
738 'context' => 'province',
740 self
::$stateProvince = CRM_Utils_Array
::asort(self
::$stateProvince);
744 if (array_key_exists($id, self
::$stateProvince)) {
745 return self
::$stateProvince[$id];
752 return self
::$stateProvince;
756 * Get all the State/Province abbreviations from the database.
758 * Same as above, except gets the abbreviations instead of the names.
763 * @param bool|int $id - Optional id to return
767 * @return array - array reference of all State/Province abbreviations.
769 public static function &stateProvinceAbbreviation($id = FALSE, $limit = TRUE) {
773 FROM civicrm_state_province
781 return CRM_Core_DAO
::singleValueQuery($query, $params);
784 if (!self
::$stateProvinceAbbreviation ||
!$id) {
786 $whereClause = FALSE;
789 $config = CRM_Core_Config
::singleton();
790 $countryIsoCodes = self
::countryIsoCode();
791 $limitCodes = $config->provinceLimit();
793 foreach ($limitCodes as $code) {
794 $tmpArray = array_keys($countryIsoCodes, $code);
796 if (!empty($tmpArray)) {
797 $limitIds[] = array_shift($tmpArray);
800 if (!empty($limitIds)) {
801 $whereClause = 'country_id IN (' . implode(', ', $limitIds) . ')';
804 self
::populate(self
::$stateProvinceAbbreviation, 'CRM_Core_DAO_StateProvince', TRUE, 'abbreviation', 'is_active', $whereClause);
808 if (array_key_exists($id, self
::$stateProvinceAbbreviation)) {
809 return self
::$stateProvinceAbbreviation[$id];
816 return self
::$stateProvinceAbbreviation;
820 * Get all the countries from database.
822 * The static array country is returned, and if it's
823 * called the first time, the <b>Country DAO</b> is used
824 * to get all the countries.
826 * Note: any database errors will be trapped by the DAO.
831 * @param bool|int $id - Optional id to return
833 * @param bool $applyLimit
835 * @return array - array reference of all countries.
837 public static function country($id = FALSE, $applyLimit = TRUE) {
838 if (($id && !CRM_Utils_Array
::value($id, self
::$country)) ||
!self
::$country ||
!$id) {
840 $config = CRM_Core_Config
::singleton();
841 $limitCodes = array();
844 // limit the country list to the countries specified in CIVICRM_COUNTRY_LIMIT
845 // (ensuring it's a subset of the legal values)
846 // K/P: We need to fix this, i dont think it works with new setting files
847 $limitCodes = $config->countryLimit();
848 if (!is_array($limitCodes)) {
850 $config->countryLimit
=> 1,
854 $limitCodes = array_intersect(self
::countryIsoCode(), $limitCodes);
857 if (count($limitCodes)) {
858 $whereClause = "iso_code IN ('" . implode("', '", $limitCodes) . "')";
864 self
::populate(self
::$country, 'CRM_Core_DAO_Country', TRUE, 'name', 'is_active', $whereClause);
866 // if default country is set, percolate it to the top
867 if ($config->defaultContactCountry()) {
868 $countryIsoCodes = self
::countryIsoCode();
869 $defaultID = array_search($config->defaultContactCountry(), $countryIsoCodes);
870 if ($defaultID !== FALSE) {
871 $default[$defaultID] = CRM_Utils_Array
::value($defaultID, self
::$country);
872 self
::$country = $default + self
::$country;
876 // localise the country names if in an non-en_US locale
878 if ($tsLocale != '' and $tsLocale != 'en_US') {
879 $i18n = CRM_Core_I18n
::singleton();
880 $i18n->localizeArray(self
::$country, array(
881 'context' => 'country',
883 self
::$country = CRM_Utils_Array
::asort(self
::$country);
887 if (array_key_exists($id, self
::$country)) {
888 return self
::$country[$id];
891 return CRM_Core_DAO
::$_nullObject;
894 return self
::$country;
898 * Get all the country ISO Code abbreviations from the database.
900 * The static array countryIsoCode is returned, and if it's
901 * called the first time, the <b>Country DAO</b> is used
902 * to get all the countries' ISO codes.
904 * Note: any database errors will be trapped by the DAO.
911 * @return array - array reference of all country ISO codes.
913 public static function &countryIsoCode($id = FALSE) {
914 if (!self
::$countryIsoCode) {
915 self
::populate(self
::$countryIsoCode, 'CRM_Core_DAO_Country', TRUE, 'iso_code');
918 if (array_key_exists($id, self
::$countryIsoCode)) {
919 return self
::$countryIsoCode[$id];
922 return CRM_Core_DAO
::$_nullObject;
925 return self
::$countryIsoCode;
929 * DEPRECATED. Please use the buildOptions() method in the appropriate BAO object.
931 * Get all groups from database
933 * The static array group is returned, and if it's
934 * called the first time, the <b>Group DAO</b> is used
935 * to get all the groups.
937 * Note: any database errors will be trapped by the DAO.
939 * @param string $groupType type of group(Access/Mailing)
940 * @param bool|\boolen $excludeHidden exclude hidden groups.
945 * @return array - array reference of all groups.
947 public static function &allGroup($groupType = NULL, $excludeHidden = TRUE) {
948 $condition = CRM_Contact_BAO_Group
::groupTypeCondition($groupType, $excludeHidden);
951 self
::$group = array();
954 $groupKey = $groupType ?
$groupType : 'null';
956 if (!isset(self
::$group[$groupKey])) {
957 self
::$group[$groupKey] = NULL;
958 self
::populate(self
::$group[$groupKey], 'CRM_Contact_DAO_Group', FALSE, 'title', 'is_active', $condition);
960 return self
::$group[$groupKey];
964 * Create or get groups iterator (iterates over nested groups in a
967 * The GroupNesting instance is returned; it's created if this is being
968 * called for the first time
974 * @param bool $styledLabels
976 * @return mixed - instance of CRM_Contact_BAO_GroupNesting
978 public static function &groupIterator($styledLabels = FALSE) {
979 if (!self
::$groupIterator) {
981 When used as an object, GroupNesting implements Iterator
982 and iterates nested groups in a logical manner for us
984 self
::$groupIterator = new CRM_Contact_BAO_GroupNesting($styledLabels);
986 return self
::$groupIterator;
990 * Get all permissioned groups from database
992 * The static array group is returned, and if it's
993 * called the first time, the <b>Group DAO</b> is used
994 * to get all the groups.
996 * Note: any database errors will be trapped by the DAO.
998 * @param string $groupType type of group(Access/Mailing)
999 * @param bool $excludeHidden exclude hidden groups.
1004 * @return array - array reference of all groups.
1006 public static function group($groupType = NULL, $excludeHidden = TRUE) {
1007 return CRM_Core_Permission
::group($groupType, $excludeHidden);
1011 * Fetch groups in a nested format suitable for use in select form element
1012 * @param bool $checkPermissions
1013 * @param string|null $groupType
1014 * @param bool $excludeHidden
1017 public static function nestedGroup($checkPermissions = TRUE, $groupType = NULL, $excludeHidden = TRUE) {
1018 $groups = $checkPermissions ? self
::group($groupType, $excludeHidden) : self
::allGroup($groupType, $excludeHidden);
1019 return CRM_Contact_BAO_Group
::getGroupsHierarchy($groups, NULL, ' ', TRUE);
1023 * Get all permissioned groups from database
1025 * The static array group is returned, and if it's
1026 * called the first time, the <b>Group DAO</b> is used
1027 * to get all the groups.
1029 * Note: any database errors will be trapped by the DAO.
1034 * @param bool $onlyPublic
1035 * @param null $groupType
1036 * @param bool $excludeHidden
1038 * @return array - array reference of all groups.
1040 public static function &staticGroup($onlyPublic = FALSE, $groupType = NULL, $excludeHidden = TRUE) {
1041 if (!self
::$staticGroup) {
1042 $condition = 'saved_search_id = 0 OR saved_search_id IS NULL';
1044 $condition .= " AND visibility != 'User and User Admin Only'";
1048 $condition .= ' AND ' . CRM_Contact_BAO_Group
::groupTypeCondition($groupType);
1051 if ($excludeHidden) {
1052 $condition .= ' AND is_hidden != 1 ';
1055 self
::populate(self
::$staticGroup, 'CRM_Contact_DAO_Group', FALSE, 'title', 'is_active', $condition, 'title');
1058 return self
::$staticGroup;
1062 * Get all Relationship Types from database.
1064 * The static array group is returned, and if it's
1065 * called the first time, the <b>RelationshipType DAO</b> is used
1066 * to get all the relationship types.
1068 * Note: any database errors will be trapped by the DAO.
1070 * @param string $valueColumnName db column name/label.
1071 * @param boolean $reset reset relationship types if true
1076 * @return array - array reference of all relationship types.
1078 public static function &relationshipType($valueColumnName = 'label', $reset = FALSE) {
1079 if (!CRM_Utils_Array
::value($valueColumnName, self
::$relationshipType) ||
$reset) {
1080 self
::$relationshipType[$valueColumnName] = array();
1082 //now we have name/label columns CRM-3336
1083 $column_a_b = "{$valueColumnName}_a_b";
1084 $column_b_a = "{$valueColumnName}_b_a";
1086 $relationshipTypeDAO = new CRM_Contact_DAO_RelationshipType();
1087 $relationshipTypeDAO->selectAdd();
1088 $relationshipTypeDAO->selectAdd("id, {$column_a_b}, {$column_b_a}, contact_type_a, contact_type_b, contact_sub_type_a, contact_sub_type_b");
1089 $relationshipTypeDAO->is_active
= 1;
1090 $relationshipTypeDAO->find();
1091 while ($relationshipTypeDAO->fetch()) {
1093 self
::$relationshipType[$valueColumnName][$relationshipTypeDAO->id
] = array(
1094 'id' => $relationshipTypeDAO->id
,
1095 $column_a_b => $relationshipTypeDAO->$column_a_b,
1096 $column_b_a => $relationshipTypeDAO->$column_b_a,
1097 'contact_type_a' => "$relationshipTypeDAO->contact_type_a",
1098 'contact_type_b' => "$relationshipTypeDAO->contact_type_b",
1099 'contact_sub_type_a' => "$relationshipTypeDAO->contact_sub_type_a",
1100 'contact_sub_type_b' => "$relationshipTypeDAO->contact_sub_type_b",
1105 return self
::$relationshipType[$valueColumnName];
1109 * get all the ISO 4217 currency codes
1111 * so far, we use this for validation only, so there's no point of putting this into the database
1115 * @return array - array reference of all currency codes
1118 public static function ¤cyCode() {
1119 if (!self
::$currencyCode) {
1120 self
::$currencyCode = array(
1390 return self
::$currencyCode;
1394 * Get all the County from database.
1396 * The static array county is returned, and if it's
1397 * called the first time, the <b>County DAO</b> is used
1398 * to get all the Counties.
1400 * Note: any database errors will be trapped by the DAO.
1405 * @param bool|int $id - Optional id to return
1407 * @return array - array reference of all Counties
1409 public static function &county($id = FALSE) {
1410 if (!self
::$county) {
1412 $config = CRM_Core_Config
::singleton();
1413 // order by id so users who populate civicrm_county can have more control over sort by the order they load the counties
1414 self
::populate(self
::$county, 'CRM_Core_DAO_County', TRUE, 'name', NULL, NULL, 'id');
1417 if (array_key_exists($id, self
::$county)) {
1418 return self
::$county[$id];
1421 return CRM_Core_DAO
::$_nullObject;
1424 return self
::$county;
1428 * DEPRECATED. Please use the buildOptions() method in the appropriate BAO object.
1429 * Get all active payment processors
1431 * The static array paymentProcessor is returned
1436 * @param boolean $all - get payment processors - default is to get only active ones.
1437 * @param boolean $test - get test payment processors
1439 * @param null $additionalCond
1441 * @return array - array of all payment processors
1443 public static function &paymentProcessor($all = FALSE, $test = FALSE, $additionalCond = NULL) {
1444 $condition = "is_test = ";
1445 $condition .= ($test) ?
'1' : '0';
1447 if ($additionalCond) {
1448 $condition .= " AND ( $additionalCond ) ";
1451 // CRM-7178. Make sure we only include payment processors valid in ths
1453 $condition .= " AND domain_id = " . CRM_Core_Config
::domainID();
1455 $cacheKey = $condition . '_' . (int) $all;
1456 if (!isset(self
::$paymentProcessor[$cacheKey])) {
1457 self
::populate(self
::$paymentProcessor[$cacheKey], 'CRM_Financial_DAO_PaymentProcessor', $all, 'name', 'is_active', $condition, 'is_default desc, name');
1460 return self
::$paymentProcessor[$cacheKey];
1464 * DEPRECATED. Please use the buildOptions() method in the appropriate BAO object.
1466 * The static array paymentProcessorType is returned
1471 * @param boolean $all - get payment processors - default is to get only active ones.
1474 * @param string $return
1476 * @return array - array of all payment processor types
1478 public static function &paymentProcessorType($all = FALSE, $id = NULL, $return = 'title') {
1479 $cacheKey = $id . '_' .$return;
1480 if (empty(self
::$paymentProcessorType[$cacheKey])) {
1481 self
::populate(self
::$paymentProcessorType[$cacheKey], 'CRM_Financial_DAO_PaymentProcessorType', $all, $return, 'is_active', NULL, "is_default, $return", 'id');
1483 if ($id && CRM_Utils_Array
::value($id, self
::$paymentProcessorType[$cacheKey])) {
1484 return self
::$paymentProcessorType[$cacheKey][$id];
1486 return self
::$paymentProcessorType[$cacheKey];
1490 * Get all the World Regions from Database
1496 * @return array - array reference of all World Regions
1499 public static function &worldRegion($id = FALSE) {
1500 if (!self
::$worldRegions) {
1501 self
::populate(self
::$worldRegions, 'CRM_Core_DAO_Worldregion', TRUE, 'name', NULL, NULL, 'id');
1505 if (array_key_exists($id, self
::$worldRegions)) {
1506 return self
::$worldRegions[$id];
1509 return CRM_Core_DAO
::$_nullObject;
1513 return self
::$worldRegions;
1517 * DEPRECATED. Please use the buildOptions() method in the appropriate BAO object.
1519 * Get all Activity Statuses.
1521 * The static array activityStatus is returned
1526 * @param string $column
1528 * @return array - array reference of all activity statuses
1530 public static function &activityStatus($column = 'label') {
1531 if (NULL === self
::$activityStatus) {
1532 self
::$activityStatus = array();
1534 if (!array_key_exists($column, self
::$activityStatus)) {
1535 self
::$activityStatus[$column] = array();
1537 self
::$activityStatus[$column] = CRM_Core_OptionGroup
::values('activity_status', FALSE, FALSE, FALSE, NULL, $column);
1540 return self
::$activityStatus[$column];
1544 * DEPRECATED. Please use the buildOptions() method in the appropriate BAO object.
1546 * Get all Visibility levels.
1548 * The static array visibility is returned
1553 * @param string $column
1555 * @return array - array reference of all Visibility levels.
1557 public static function &visibility($column = 'label') {
1558 if (!isset(self
::$visibility)) {
1559 self
::$visibility = array( );
1562 if (!isset(self
::$visibility[$column])) {
1563 self
::$visibility[$column] = CRM_Core_OptionGroup
::values('visibility', FALSE, FALSE, FALSE, NULL, $column);
1566 return self
::$visibility[$column];
1571 * @param string $field
1575 public static function &stateProvinceForCountry($countryID, $field = 'name') {
1576 static $_cache = NULL;
1578 $cacheKey = "{$countryID}_{$field}";
1583 if (!empty($_cache[$cacheKey])) {
1584 return $_cache[$cacheKey];
1588 SELECT civicrm_state_province.{$field} name, civicrm_state_province.id id
1589 FROM civicrm_state_province
1590 WHERE country_id = %1
1599 $dao = CRM_Core_DAO
::executeQuery($query, $params);
1602 while ($dao->fetch()) {
1603 $result[$dao->id
] = $dao->name
;
1606 // localise the stateProvince names if in an non-en_US locale
1607 $config = CRM_Core_Config
::singleton();
1609 if ($tsLocale != '' and $tsLocale != 'en_US') {
1610 $i18n = CRM_Core_I18n
::singleton();
1611 $i18n->localizeArray($result, array(
1612 'context' => 'province',
1614 $result = CRM_Utils_Array
::asort($result);
1617 $_cache[$cacheKey] = $result;
1619 CRM_Utils_Hook
::buildStateProvinceForCountry($countryID, $result);
1629 public static function &countyForState($stateID) {
1630 if (is_array($stateID)) {
1631 $states = implode(", ", $stateID);
1633 SELECT civicrm_county.name name, civicrm_county.id id, civicrm_state_province.abbreviation abbreviation
1635 LEFT JOIN civicrm_state_province ON civicrm_county.state_province_id = civicrm_state_province.id
1636 WHERE civicrm_county.state_province_id in ( $states )
1637 ORDER BY civicrm_state_province.abbreviation, civicrm_county.name";
1639 $dao = CRM_Core_DAO
::executeQuery($query);
1642 while ($dao->fetch()) {
1643 $result[$dao->id
] = $dao->abbreviation
. ': ' . $dao->name
;
1648 static $_cache = NULL;
1650 $cacheKey = "{$stateID}_name";
1655 if (!empty($_cache[$cacheKey])) {
1656 return $_cache[$cacheKey];
1660 SELECT civicrm_county.name name, civicrm_county.id id
1662 WHERE state_province_id = %1
1671 $dao = CRM_Core_DAO
::executeQuery($query, $params);
1674 while ($dao->fetch()) {
1675 $result[$dao->id
] = $dao->name
;
1683 * Given a state ID return the country ID, this allows
1684 * us to populate forms and values for downstream code
1686 * @param $stateID int
1688 * @return int the country id that the state belongs to
1692 static function countryIDForStateID($stateID) {
1693 if (empty($stateID)) {
1694 return CRM_Core_DAO
::$_nullObject;
1699 FROM civicrm_state_province
1702 $params = array(1 => array($stateID, 'Integer'));
1704 return CRM_Core_DAO
::singleValueQuery($query, $params);
1708 * Get all types of Greetings.
1710 * The static array of greeting is returned
1715 * @param $filter - get All Email Greetings - default is to get only active ones.
1717 * @param string $columnName
1719 * @return array - array reference of all greetings.
1721 public static function greeting($filter, $columnName = 'label') {
1722 $index = $filter['greeting_type'] . '_' . $columnName;
1724 // also add contactType to the array
1725 $contactType = CRM_Utils_Array
::value('contact_type', $filter);
1727 $index .= '_' . $contactType;
1730 if (NULL === self
::$greeting) {
1731 self
::$greeting = array();
1734 if (!CRM_Utils_Array
::value($index, self
::$greeting)) {
1735 $filterCondition = NULL;
1737 $filterVal = 'v.filter =';
1738 switch ($contactType) {
1747 case 'Organization':
1751 $filterCondition .= "AND (v.filter = 0 OR {$filterVal}) ";
1754 self
::$greeting[$index] = CRM_Core_OptionGroup
::values($filter['greeting_type'], NULL, NULL, NULL, $filterCondition, $columnName);
1757 return self
::$greeting[$index];
1761 * Construct array of default greeting values for contact type
1766 * @return array - array reference of default greetings.
1769 public static function &greetingDefaults() {
1770 if (!self
::$greetingDefaults) {
1771 $defaultGreetings = array();
1772 $contactTypes = self
::get('CRM_Contact_DAO_Contact', 'contact_type', array('keyColumn' => 'id', 'labelColumn' => 'name'));
1774 foreach ($contactTypes as $filter => $contactType) {
1775 $filterCondition = " AND (v.filter = 0 OR v.filter = $filter) AND v.is_default = 1 ";
1777 foreach (CRM_Contact_BAO_Contact
::$_greetingTypes as $greeting) {
1778 $tokenVal = CRM_Core_OptionGroup
::values($greeting, NULL, NULL, NULL, $filterCondition, 'label');
1779 $defaultGreetings[$contactType][$greeting] = $tokenVal;
1783 self
::$greetingDefaults = $defaultGreetings;
1786 return self
::$greetingDefaults;
1790 * Get all extensions
1792 * The static array extensions
1794 * FIXME: This is called by civix but not by any core code. We
1795 * should provide an API call which civix can use instead.
1800 * @return array - array($fullyQualifiedName => $label) list of extensions
1802 public static function &getExtensions() {
1803 if (!self
::$extensions) {
1804 self
::$extensions = array();
1806 SELECT full_name, label
1807 FROM civicrm_extension
1810 $dao = CRM_Core_DAO
::executeQuery($sql);
1811 while ($dao->fetch()) {
1812 self
::$extensions[$dao->full_name
] = $dao->label
;
1816 return self
::$extensions;
1820 * Get all options values
1822 * The static array option values is returned
1827 * @param boolean $optionGroupName - get All Option Group values- default is to get only active ones.
1830 * @param null $condition
1832 * @return array - array reference of all Option Group Name
1834 public static function accountOptionValues($optionGroupName, $id = null, $condition = null) {
1835 $cacheKey = $optionGroupName . '_' . $condition;
1836 if (empty(self
::$accountOptionValues[$cacheKey])) {
1837 self
::$accountOptionValues[$cacheKey] = CRM_Core_OptionGroup
::values($optionGroupName, false, false, false, $condition);
1840 return CRM_Utils_Array
::value($id, self
::$accountOptionValues[$cacheKey]);
1843 return self
::$accountOptionValues[$cacheKey];
1847 * Fetch the list of active extensions of type 'module'
1849 * @param $fresh bool whether to forcibly reload extensions list from canonical store
1853 * @return array - array(array('prefix' => $, 'file' => $))
1855 public static function getModuleExtensions($fresh = FALSE) {
1856 return CRM_Extension_System
::singleton()->getMapper()->getActiveModuleFiles($fresh);
1863 * The static array tax rates is returned
1868 * @return array - array list of tax rates with the financial type
1870 public static function getTaxRates() {
1871 if (!self
::$taxRates) {
1872 self
::$taxRates = array();
1874 SELECT fa.tax_rate, efa.entity_id
1875 FROM civicrm_entity_financial_account efa
1876 INNER JOIN civicrm_financial_account fa ON fa.id = efa.financial_account_id
1877 INNER JOIN civicrm_option_value cov ON cov.value = efa.account_relationship
1878 INNER JOIN civicrm_option_group cog ON cog.id = cov.option_group_id
1879 WHERE efa.entity_table = 'civicrm_financial_type'
1880 AND cov.name = 'Sales Tax Account is'
1881 AND cog.name = 'account_relationship'
1882 AND fa.is_active = 1";
1883 $dao = CRM_Core_DAO
::executeQuery($sql);
1884 while ($dao->fetch()) {
1885 self
::$taxRates[$dao->entity_id
] = $dao->tax_rate
;
1889 return self
::$taxRates;