$name DAO. * * Note: any database errors will be trapped by the DAO. * * @param array $var the associative array we will fill * @param string $name the name of the DAO * @param boolean $all get all objects. default is to get only active ones. * @param string $retrieve the field that we are interested in (normally name, differs in some objects) * @param string $filter the field that we want to filter the result set with * @param string $condition the condition that gets passed to the final query as the WHERE clause * * @return void * @access public * @static */ public static function populate( &$var, $name, $all = FALSE, $retrieve = 'name', $filter = 'is_active', $condition = NULL, $orderby = NULL, $key = 'id', $force = NULL ) { $cacheKey = "CRM_PC_{$name}_{$all}_{$key}_{$retrieve}_{$filter}_{$condition}_{$orderby}"; $cache = CRM_Utils_Cache::singleton(); $var = $cache->get($cacheKey); if ($var && empty($force)) { return $var; } $object = new $name ( ); $object->selectAdd(); $object->selectAdd("$key, $retrieve"); if ($condition) { $object->whereAdd($condition); } if (!$orderby) { $object->orderBy($retrieve); } else { $object->orderBy($orderby); } if (!$all) { $object->$filter = 1; } $object->find(); $var = array(); while ($object->fetch()) { $var[$object->$key] = $object->$retrieve; } $cache->set($cacheKey, $var); } /** * Flush given pseudoconstant so it can be reread from db * nex time it's requested. * * @access public * @static * * @param boolean $name pseudoconstant to be flushed * */ public static function flush($name) { if (isset(self::$$name)) { self::$$name = NULL; } } /** * Get all location types. * * The static array locationType is returned * * @access public * @static * * @param boolean $all - get All location types - default is to get only active ones. * * @return array - array reference of all location types. * */ public static function &locationType($all = FALSE) { if (!self::$locationType) { self::populate(self::$locationType, 'CRM_Core_DAO_LocationType', $all); } return self::$locationType; } /** * Get all location vCard names. * * The static array locationVcardName is returned * * @access public * @static * * @param boolean $all - get All location vCard names - default is to get only active ones. * * @return array - array reference of all location vCard names. * */ public static function &locationVcardName($all = FALSE) { if (!self::$locationVcardName) { self::populate(self::$locationVcardName, 'CRM_Core_DAO_LocationType', $all, 'vcard_name'); } return self::$locationVcardName; } /** * Get all location Display names. * * The static array locationDisplayName is returned * * @access public * @static * * @param boolean $all - get All location display names - default is to get only active ones. * * @return array - array reference of all location display names. * */ public static function &locationDisplayName($all = FALSE) { if (!self::$locationDisplayName) { self::populate(self::$locationDisplayName, 'CRM_Core_DAO_LocationType', $all, 'display_name'); } return self::$locationDisplayName; } /** * Get all Activty types. * * The static array activityType is returned * * @param boolean $all - get All Activity types - default is to get only active ones. * * @access public * @static * * @return array - array reference of all activity types. */ public static function &activityType() { $args = func_get_args(); $all = CRM_Utils_Array::value(0, $args, TRUE); $includeCaseActivities = CRM_Utils_Array::value(1, $args, FALSE); $reset = CRM_Utils_Array::value(2, $args, FALSE); $returnColumn = CRM_Utils_Array::value(3, $args, 'label'); $includeCampaignActivities = CRM_Utils_Array::value(4, $args, FALSE); $onlyComponentActivities = CRM_Utils_Array::value(5, $args, FALSE); $index = (int) $all . '_' . $returnColumn . '_' . (int) $includeCaseActivities; $index .= '_' . (int) $includeCampaignActivities; $index .= '_' . (int) $onlyComponentActivities; if (NULL === self::$activityType) { self::$activityType = array(); } if (!isset(self::$activityType[$index]) || $reset) { $condition = NULL; if (!$all) { $condition = 'AND filter = 0'; } $componentClause = " v.component_id IS NULL"; if ($onlyComponentActivities) { $componentClause = " v.component_id IS NOT NULL"; } $componentIds = array(); $compInfo = CRM_Core_Component::getEnabledComponents(); // build filter for listing activity types only if their // respective components are enabled foreach ($compInfo as $compName => $compObj) { if ($compName == 'CiviCase') { if ($includeCaseActivities) { $componentIds[] = $compObj->componentID; } } elseif ($compName == 'CiviCampaign') { if ($includeCampaignActivities) { $componentIds[] = $compObj->componentID; } } else { $componentIds[] = $compObj->componentID; } } if (count($componentIds)) { $componentIds = implode(',', $componentIds); $componentClause = " ($componentClause OR v.component_id IN ($componentIds))"; if ($onlyComponentActivities) { $componentClause = " ( v.component_id IN ($componentIds ) )"; } } $condition = $condition . ' AND ' . $componentClause; self::$activityType[$index] = CRM_Core_OptionGroup::values('activity_type', FALSE, FALSE, FALSE, $condition, $returnColumn); } return self::$activityType[$index]; } /** * Get all payment-processor billing modes * * @access public * @static * * @return array ($id => $name) */ public static function billingMode() { if (!self::$billingMode) { self::$billingMode = array( CRM_Core_Payment::BILLING_MODE_FORM => 'form', CRM_Core_Payment::BILLING_MODE_BUTTON => 'button', CRM_Core_Payment::BILLING_MODE_NOTIFY => 'notify', ); } return self::$billingMode; } /** * Get all component names * * @access public * @static * * @return array - array reference of all location display names. * */ public static function &component() { if (!self::$component) { self::populate(self::$component, 'CRM_Core_DAO_Component', TRUE, 'name'); } return self::$component; } /** * Get all Individual Prefix. * * The static array individualPrefix is returned * * @access public * @static * * @param boolean $all - get All Individual Prefix - default is to get only active ones. * * @return array - array reference of all individual prefix. * */ public static function &individualPrefix() { if (!self::$individualPrefix) { self::$individualPrefix = CRM_Core_OptionGroup::values('individual_prefix'); } return self::$individualPrefix; } /** * Get all phone type * The static array phoneType is returned * * @access public * @static * * @param boolean $all - get All phone type - default is to get * only active ones. * * @return array - array reference of all phone types. * */ public static function &phoneType() { if (!self::$phoneType) { self::$phoneType = CRM_Core_OptionGroup::values('phone_type'); } return self::$phoneType; } /** * Get all Individual Suffix. * * The static array individualSuffix is returned * * @access public * @static * * @param boolean $all - get All Individual Suffix - default is to get only active ones. * * @return array - array reference of all individual suffix. * */ public static function &individualSuffix() { if (!self::$individualSuffix) { self::$individualSuffix = CRM_Core_OptionGroup::values('individual_suffix'); } return self::$individualSuffix; } /** * Get all Gender. * * The static array gender is returned * * @access public * @static * * @param boolean $all - get All Gender - default is to get only active ones. * * @return array - array reference of all gender. * */ public static function &gender($localize = FALSE) { if (!self::$gender) { self::$gender = CRM_Core_OptionGroup::values('gender', FALSE, FALSE, $localize); } return self::$gender; } /** * Get all the IM Providers from database. * * The static array imProvider is returned, and if it's * called the first time, the IM DAO is used * to get all the IM Providers. * * Note: any database errors will be trapped by the DAO. * * @access public * @static * * @return array - array reference of all IM providers. * */ public static function &IMProvider($localize = FALSE) { if (!self::$imProvider) { self::$imProvider = CRM_Core_OptionGroup::values('instant_messenger_service', FALSE, FALSE, $localize); } return self::$imProvider; } /** * Get all the website types from database. * * The static array websiteType is returned, and if it's * called the first time, the Website DAO is used * to get all the Website Types. * * Note: any database errors will be trapped by the DAO. * * @access public * @static * * @return array - array reference of all Website types. * */ public static function &websiteType() { if (!self::$websiteType) { self::$websiteType = CRM_Core_OptionGroup::values('website_type'); } return self::$websiteType; } /** * Get the all From Email Address from database. * * The static array $fromEmailAddress is returned, and if it's * called the first time, DAO is used * to get all the From Email Address * * Note: any database errors will be trapped by the DAO. * * @access public * @static * * @return array - array reference of all From Email Address. */ public static function &fromEmailAddress() { if (!self::$fromEmailAddress) { self::$fromEmailAddress = CRM_Core_OptionGroup::values('from_email_address'); } return self::$fromEmailAddress; } /** * Get the all Mail Protocols from database. * * The static array mailProtocol is returned, and if it's * called the first time, the DAO is used * to get all the Mail Protocol. * * Note: any database errors will be trapped by the DAO. * * @access public * @static * * @return array - array reference of all Mail Protocols. */ public static function &mailProtocol() { if (!self::$mailProtocol) { self::$mailProtocol = CRM_Core_OptionGroup::values('mail_protocol'); } return self::$mailProtocol; } /** * Get all the State/Province from database. * * The static array stateProvince is returned, and if it's * called the first time, the State Province DAO is used * to get all the States. * * Note: any database errors will be trapped by the DAO. * * @access public * @static * * @param int $id - Optional id to return * * @return array - array reference of all State/Provinces. * */ public static function &stateProvince($id = FALSE, $limit = TRUE) { if (($id && !CRM_Utils_Array::value($id, self::$stateProvince)) || !self::$stateProvince || !$id) { $whereClause = FALSE; $config = CRM_Core_Config::singleton(); if ($limit) { $countryIsoCodes = self::countryIsoCode(); $limitCodes = $config->provinceLimit(); $limitIds = array(); foreach ($limitCodes as $code) { $limitIds = array_merge($limitIds, array_keys($countryIsoCodes, $code)); } if (!empty($limitIds)) { $whereClause = 'country_id IN (' . implode(', ', $limitIds) . ')'; } else { $whereClause = FALSE; } } self::populate(self::$stateProvince, 'CRM_Core_DAO_StateProvince', TRUE, 'name', 'is_active', $whereClause); // localise the province names if in an non-en_US locale global $tsLocale; if ($tsLocale != '' and $tsLocale != 'en_US') { $i18n = CRM_Core_I18n::singleton(); $i18n->localizeArray(self::$stateProvince, array( 'context' => 'province', )); self::$stateProvince = CRM_Utils_Array::asort(self::$stateProvince); } } if ($id) { if (array_key_exists($id, self::$stateProvince)) { return self::$stateProvince[$id]; } else { $result = NULL; return $result; } } return self::$stateProvince; } /** * Get all the State/Province abbreviations from the database. * * Same as above, except gets the abbreviations instead of the names. * * @access public * @static * * @param int $id - Optional id to return * * @return array - array reference of all State/Province abbreviations. */ public static function &stateProvinceAbbreviation($id = FALSE, $limit = TRUE) { if ($id > 1) { $query = " SELECT abbreviation FROM civicrm_state_province WHERE id = %1"; $params = array( 1 => array( $id, 'Integer', ), ); return CRM_Core_DAO::singleValueQuery($query, $params); } if (!self::$stateProvinceAbbreviation || !$id) { $whereClause = FALSE; if ($limit) { $config = CRM_Core_Config::singleton(); $countryIsoCodes = self::countryIsoCode(); $limitCodes = $config->provinceLimit(); $limitIds = array(); foreach ($limitCodes as $code) { $tmpArray = array_keys($countryIsoCodes, $code); if (!empty($tmpArray)) { $limitIds[] = array_shift($tmpArray); } } if (!empty($limitIds)) { $whereClause = 'country_id IN (' . implode(', ', $limitIds) . ')'; } } self::populate(self::$stateProvinceAbbreviation, 'CRM_Core_DAO_StateProvince', TRUE, 'abbreviation', 'is_active', $whereClause); } if ($id) { if (array_key_exists($id, self::$stateProvinceAbbreviation)) { return self::$stateProvinceAbbreviation[$id]; } else { $result = NULL; return $result; } } return self::$stateProvinceAbbreviation; } /** * Get all the countries from database. * * The static array country is returned, and if it's * called the first time, the Country DAO is used * to get all the countries. * * Note: any database errors will be trapped by the DAO. * * @access public * @static * * @param int $id - Optional id to return * * @return array - array reference of all countries. * */ public static function country($id = FALSE, $applyLimit = TRUE) { if (($id && !CRM_Utils_Array::value($id, self::$country)) || !self::$country || !$id) { $config = CRM_Core_Config::singleton(); $limitCodes = array(); if ($applyLimit) { // limit the country list to the countries specified in CIVICRM_COUNTRY_LIMIT // (ensuring it's a subset of the legal values) // K/P: We need to fix this, i dont think it works with new setting files $limitCodes = $config->countryLimit(); if (!is_array($limitCodes)) { $limitCodes = array( $config->countryLimit => 1, ); } $limitCodes = array_intersect(self::countryIsoCode(), $limitCodes); } if (count($limitCodes)) { $whereClause = "iso_code IN ('" . implode("', '", $limitCodes) . "')"; } else { $whereClause = NULL; } self::populate(self::$country, 'CRM_Core_DAO_Country', TRUE, 'name', 'is_active', $whereClause); // if default country is set, percolate it to the top if ($config->defaultContactCountry()) { $countryIsoCodes = self::countryIsoCode(); $defaultID = array_search($config->defaultContactCountry(), $countryIsoCodes); if ($defaultID !== FALSE) { $default[$defaultID] = CRM_Utils_Array::value($defaultID, self::$country); self::$country = $default + self::$country; } } // localise the country names if in an non-en_US locale global $tsLocale; if ($tsLocale != '' and $tsLocale != 'en_US') { $i18n = CRM_Core_I18n::singleton(); $i18n->localizeArray(self::$country, array( 'context' => 'country', )); self::$country = CRM_Utils_Array::asort(self::$country); } } if ($id) { if (array_key_exists($id, self::$country)) { return self::$country[$id]; } else { return CRM_Core_DAO::$_nullObject; } } return self::$country; } /** * Get all the country ISO Code abbreviations from the database. * * The static array countryIsoCode is returned, and if it's * called the first time, the Country DAO is used * to get all the countries' ISO codes. * * Note: any database errors will be trapped by the DAO. * * @access public * @static * * @return array - array reference of all country ISO codes. * */ public static function &countryIsoCode($id = FALSE) { if (!self::$countryIsoCode) { self::populate(self::$countryIsoCode, 'CRM_Core_DAO_Country', TRUE, 'iso_code'); } if ($id) { if (array_key_exists($id, self::$countryIsoCode)) { return self::$countryIsoCode[$id]; } else { return CRM_Core_DAO::$_nullObject; } } return self::$countryIsoCode; } /** * Get all the categories from database. * * The static array tag is returned, and if it's * called the first time, the Tag DAO is used * to get all the categories. * * Note: any database errors will be trapped by the DAO. * * @access public * @static * * @return array - array reference of all categories. * */ public static function &tag() { if (!self::$tag) { self::populate(self::$tag, 'CRM_Core_DAO_Tag', TRUE); } return self::$tag; } /** * Get all groups from database * * The static array group is returned, and if it's * called the first time, the Group DAO is used * to get all the groups. * * Note: any database errors will be trapped by the DAO. * * @param string $groupType type of group(Access/Mailing) * @param boolen $excludeHidden exclude hidden groups. * * @access public * @static * * @return array - array reference of all groups. * */ public static function &allGroup($groupType = NULL, $excludeHidden = TRUE) { $condition = CRM_Contact_BAO_Group::groupTypeCondition($groupType, $excludeHidden); if (!self::$group) { self::$group = array(); } $groupKey = $groupType ? $groupType : 'null'; if (!isset(self::$group[$groupKey])) { self::$group[$groupKey] = NULL; self::populate(self::$group[$groupKey], 'CRM_Contact_DAO_Group', FALSE, 'title', 'is_active', $condition); } return self::$group[$groupKey]; } /** * Create or get groups iterator (iterates over nested groups in a * logical fashion) * * The GroupNesting instance is returned; it's created if this is being * called for the first time * * * @access public * @static * * @return mixed - instance of CRM_Contact_BAO_GroupNesting * */ public static function &groupIterator($styledLabels = FALSE) { if (!self::$groupIterator) { /* When used as an object, GroupNesting implements Iterator and iterates nested groups in a logical manner for us */ self::$groupIterator = new CRM_Contact_BAO_GroupNesting($styledLabels); } return self::$groupIterator; } /** * Get all permissioned groups from database * * The static array group is returned, and if it's * called the first time, the Group DAO is used * to get all the groups. * * Note: any database errors will be trapped by the DAO. * * @param string $groupType type of group(Access/Mailing) * @param boolen $excludeHidden exclude hidden groups. * @access public * @static * * @return array - array reference of all groups. * */ public static function group($groupType = NULL, $excludeHidden = TRUE) { return CRM_Core_Permission::group($groupType, $excludeHidden); } /** * Get all permissioned groups from database * * The static array group is returned, and if it's * called the first time, the Group DAO is used * to get all the groups. * * Note: any database errors will be trapped by the DAO. * * @access public * @static * * @return array - array reference of all groups. * */ public static function &staticGroup($onlyPublic = FALSE, $groupType = NULL, $excludeHidden = TRUE) { if (!self::$staticGroup) { $condition = 'saved_search_id = 0 OR saved_search_id IS NULL'; if ($onlyPublic) { $condition .= " AND visibility != 'User and User Admin Only'"; } if ($groupType) { $condition .= ' AND ' . CRM_Contact_BAO_Group::groupTypeCondition($groupType); } if ($excludeHidden) { $condition .= ' AND is_hidden != 1 '; } self::populate(self::$staticGroup, 'CRM_Contact_DAO_Group', FALSE, 'title', 'is_active', $condition, 'title'); } return self::$staticGroup; } /** * Get all the custom groups * * @access public * * @return array - array reference of all groups. * @static */ public static function &customGroup($reset = FALSE) { if (!self::$customGroup || $reset) { self::populate(self::$customGroup, 'CRM_Core_DAO_CustomGroup', FALSE, 'title', 'is_active', NULL, 'title'); } return self::$customGroup; } /** * Get all the user framework groups * * @access public * * @return array - array reference of all groups. * @static */ public static function &ufGroup() { if (!self::$ufGroup) { self::populate(self::$ufGroup, 'CRM_Core_DAO_UFGroup', FALSE, 'title', 'is_active', NULL, 'title'); } return self::$ufGroup; } /** * Get all the project tasks * * @access public * * @return array - array reference of all tasks * @static */ public static function &tasks() { if (!self::$tasks) { self::populate(self::$tasks, 'CRM_Project_DAO_Task', FALSE, 'title', 'is_active', NULL, 'title'); } return self::$tasks; } /** * Get all Relationship Types from database. * * The static array group is returned, and if it's * called the first time, the RelationshipType DAO is used * to get all the relationship types. * * Note: any database errors will be trapped by the DAO. * * @param string $valueColumnName db column name/label. * @param boolean $reset reset relationship types if true * * @access public * @static * * @return array - array reference of all relationship types. */ public static function &relationshipType($valueColumnName = 'label', $reset = FALSE) { if (!CRM_Utils_Array::value($valueColumnName, self::$relationshipType) || $reset) { self::$relationshipType[$valueColumnName] = array(); //now we have name/label columns CRM-3336 $column_a_b = "{$valueColumnName}_a_b"; $column_b_a = "{$valueColumnName}_b_a"; $relationshipTypeDAO = new CRM_Contact_DAO_RelationshipType(); $relationshipTypeDAO->selectAdd(); $relationshipTypeDAO->selectAdd("id, {$column_a_b}, {$column_b_a}, contact_type_a, contact_type_b, contact_sub_type_a, contact_sub_type_b"); $relationshipTypeDAO->is_active = 1; $relationshipTypeDAO->find(); while ($relationshipTypeDAO->fetch()) { self::$relationshipType[$valueColumnName][$relationshipTypeDAO->id] = array( 'id' => $relationshipTypeDAO->id, $column_a_b => $relationshipTypeDAO->$column_a_b, $column_b_a => $relationshipTypeDAO->$column_b_a, 'contact_type_a' => "$relationshipTypeDAO->contact_type_a", 'contact_type_b' => "$relationshipTypeDAO->contact_type_b", 'contact_sub_type_a' => "$relationshipTypeDAO->contact_sub_type_a", 'contact_sub_type_b' => "$relationshipTypeDAO->contact_sub_type_b", ); } } return self::$relationshipType[$valueColumnName]; } /** * Get all the Currency Symbols from Database * * @access public * * @return array - array reference of all Currency Symbols * @static */ public static function ¤cySymbols($name = 'symbol', $key = 'id') { $cacheKey = "{$name}_{$key}"; if (!isset(self::$currencySymbols[$cacheKey])) { self::populate(self::$currencySymbols[$cacheKey], 'CRM_Financial_DAO_Currency', TRUE, $name, NULL, NULL, 'name', $key); } return self::$currencySymbols[$cacheKey]; } /** * get all the ISO 4217 currency codes * * so far, we use this for validation only, so there's no point of putting this into the database * * @access public * * @return array - array reference of all currency codes * @static */ public static function ¤cyCode() { if (!self::$currencyCode) { self::$currencyCode = array( 'AFN', 'ALL', 'DZD', 'USD', 'EUR', 'AOA', 'XCD', 'XCD', 'ARS', 'AMD', 'AWG', 'AUD', 'EUR', 'AZM', 'BSD', 'BHD', 'BDT', 'BBD', 'BYR', 'EUR', 'BZD', 'XOF', 'BMD', 'INR', 'BTN', 'BOB', 'BOV', 'BAM', 'BWP', 'NOK', 'BRL', 'USD', 'BND', 'BGN', 'XOF', 'BIF', 'KHR', 'XAF', 'CAD', 'CVE', 'KYD', 'XAF', 'XAF', 'CLP', 'CLF', 'CNY', 'AUD', 'AUD', 'COP', 'COU', 'KMF', 'XAF', 'CDF', 'NZD', 'CRC', 'XOF', 'HRK', 'CUP', 'CYP', 'CZK', 'DKK', 'DJF', 'XCD', 'DOP', 'USD', 'EGP', 'SVC', 'USD', 'XAF', 'ERN', 'EEK', 'ETB', 'FKP', 'DKK', 'FJD', 'EUR', 'EUR', 'EUR', 'XPF', 'EUR', 'XAF', 'GMD', 'GEL', 'EUR', 'GHC', 'GIP', 'EUR', 'DKK', 'XCD', 'EUR', 'USD', 'GTQ', 'GNF', 'GWP', 'XOF', 'GYD', 'HTG', 'USD', 'AUD', 'EUR', 'HNL', 'HKD', 'HUF', 'ISK', 'INR', 'IDR', 'XDR', 'IRR', 'IQD', 'EUR', 'ILS', 'EUR', 'JMD', 'JPY', 'JOD', 'KZT', 'KES', 'AUD', 'KPW', 'KRW', 'KWD', 'KGS', 'LAK', 'LVL', 'LBP', 'ZAR', 'LSL', 'LRD', 'LYD', 'CHF', 'LTL', 'EUR', 'MOP', 'MKD', 'MGA', 'MWK', 'MYR', 'MVR', 'XOF', 'MTL', 'USD', 'EUR', 'MRO', 'MUR', 'EUR', 'MXN', 'MXV', 'USD', 'MDL', 'EUR', 'MNT', 'XCD', 'MAD', 'MZM', 'MMK', 'ZAR', 'NAD', 'AUD', 'NPR', 'EUR', 'ANG', 'XPF', 'NZD', 'NIO', 'XOF', 'NGN', 'NZD', 'AUD', 'USD', 'NOK', 'OMR', 'PKR', 'USD', 'PAB', 'USD', 'PGK', 'PYG', 'PEN', 'PHP', 'NZD', 'PLN', 'EUR', 'USD', 'QAR', 'EUR', 'ROL', 'RON', 'RUB', 'RWF', 'SHP', 'XCD', 'XCD', 'EUR', 'XCD', 'WST', 'EUR', 'STD', 'SAR', 'XOF', 'CSD', 'EUR', 'SCR', 'SLL', 'SGD', 'SKK', 'SIT', 'SBD', 'SOS', 'ZAR', 'EUR', 'LKR', 'SDD', 'SRD', 'NOK', 'SZL', 'SEK', 'CHF', 'CHW', 'CHE', 'SYP', 'TWD', 'TJS', 'TZS', 'THB', 'USD', 'XOF', 'NZD', 'TOP', 'TTD', 'TND', 'TRY', 'TRL', 'TMM', 'USD', 'AUD', 'UGX', 'UAH', 'AED', 'GBP', 'USD', 'USS', 'USN', 'USD', 'UYU', 'UZS', 'VUV', 'VEB', 'VND', 'USD', 'USD', 'XPF', 'MAD', 'YER', 'ZMK', 'ZWD', 'XAU', 'XBA', 'XBB', 'XBC', 'XBD', 'XPD', 'XPT', 'XAG', 'XFU', 'XFO', 'XTS', 'XXX', ); } return self::$currencyCode; } /** * Get all the County from database. * * The static array county is returned, and if it's * called the first time, the County DAO is used * to get all the Counties. * * Note: any database errors will be trapped by the DAO. * * @access public * @static * * @param int $id - Optional id to return * * @return array - array reference of all Counties * */ public static function &county($id = FALSE) { if (!self::$county) { $config = CRM_Core_Config::singleton(); // order by id so users who populate civicrm_county can have more control over sort by the order they load the counties self::populate(self::$county, 'CRM_Core_DAO_County', TRUE, 'name', NULL, NULL, 'id'); } if ($id) { if (array_key_exists($id, self::$county)) { return self::$county[$id]; } else { return CRM_Core_DAO::$_nullObject; } } return self::$county; } /** * Get all the Preferred Communication Methods from database. * * @access public * @static * * @return array self::pcm - array reference of all preferred communication methods. * */ public static function &pcm($localize = FALSE) { if (!self::$pcm) { self::$pcm = CRM_Core_OptionGroup::values('preferred_communication_method', FALSE, FALSE, $localize); } return self::$pcm; } /** * Alias of pcm */ public static function preferredCommunicationMethod($localize = FALSE) { return self::pcm($localize); } /** * Get all active payment processors * * The static array paymentProcessor is returned * * @access public * @static * * @param boolean $all - get payment processors - default is to get only active ones. * @param boolean $test - get test payment processors * * @return array - array of all payment processors * */ public static function &paymentProcessor($all = FALSE, $test = FALSE, $additionalCond = NULL) { $condition = "is_test = "; $condition .= ($test) ? '1' : '0'; if ($additionalCond) { $condition .= " AND ( $additionalCond ) "; } // CRM-7178. Make sure we only include payment processors valid in ths // domain $condition .= " AND domain_id = " . CRM_Core_Config::domainID(); $cacheKey = $condition . '_' . (int) $all; if (!isset(self::$paymentProcessor[$cacheKey])) { self::populate(self::$paymentProcessor[$cacheKey], 'CRM_Financial_DAO_PaymentProcessor', $all, 'name', 'is_active', $condition, 'is_default desc, name'); } return self::$paymentProcessor[$cacheKey]; } /** * Get all active payment processors * * The static array paymentProcessorType is returned * * @access public * @static * * @param boolean $all - get payment processors - default is to get only active ones. * * @return array - array of all payment processor types * */ public static function &paymentProcessorType($all = FALSE, $id = NULL, $return = 'title') { $cacheKey = $id . '_' .$return; if (empty(self::$paymentProcessorType[$cacheKey])) { self::populate(self::$paymentProcessorType[$cacheKey], 'CRM_Financial_DAO_PaymentProcessorType', $all, $return, 'is_active', NULL, "is_default, $return", 'id'); } if ($id && CRM_Utils_Array::value($id, self::$paymentProcessorType[$cacheKey])) { return self::$paymentProcessorType[$cacheKey][$id]; } return self::$paymentProcessorType[$cacheKey]; } /** * Get all the World Regions from Database * * @access public * * @return array - array reference of all World Regions * @static */ public static function &worldRegion($id = FALSE) { if (!self::$worldRegions) { self::populate(self::$worldRegions, 'CRM_Core_DAO_Worldregion', TRUE, 'name', NULL, NULL, 'id'); } if ($id) { if (array_key_exists($id, self::$worldRegions)) { return self::$worldRegions[$id]; } else { return CRM_Core_DAO::$_nullObject; } } return self::$worldRegions; } /** * Get all Honor Type. * * The static array honorType is returned * * @access public * @static * * @param boolean $all - get All Honor Type. * * @return array - array reference of all Honor Types. * */ public static function &honor() { if (!self::$honorType) { self::$honorType = CRM_Core_OptionGroup::values('honor_type'); } return self::$honorType; } /** * Get all Activity Statuses. * * The static array activityStatus is returned * * @access public * @static * * @return array - array reference of all activity statuses */ public static function &activityStatus($column = 'label') { if (NULL === self::$activityStatus) { self::$activityStatus = array(); } if (!array_key_exists($column, self::$activityStatus)) { self::$activityStatus[$column] = array(); self::$activityStatus[$column] = CRM_Core_OptionGroup::values('activity_status', FALSE, FALSE, FALSE, NULL, $column); } return self::$activityStatus[$column]; } /** * Get all Priorities * * The static array Priority is returned * * @access public * @static * * @return array - array reference of all Priority */ public static function &priority() { if (!self::$priority) { self::$priority = CRM_Core_OptionGroup::values('priority'); } return self::$priority; } /** * Get all WYSIWYG Editors. * * The static array wysiwygEditor is returned * * @access public * @static * * @return array - array reference of all wysiwygEditors */ public static function &wysiwygEditor() { if (!self::$wysiwygEditor) { self::$wysiwygEditor = CRM_Core_OptionGroup::values('wysiwyg_editor'); } return self::$wysiwygEditor; } /** * Get all Visibility levels. * * The static array visibility is returned * * @access public * @static * * @return array - array reference of all Visibility levels. * */ public static function &visibility($column = 'label') { if (!isset(self::$visibility)) { self::$visibility = array( ); } if (!isset(self::$visibility[$column])) { self::$visibility[$column] = CRM_Core_OptionGroup::values('visibility', FALSE, FALSE, FALSE, NULL, $column); } return self::$visibility[$column]; } /** * Get all mapping types * * @return array - array reference of all mapping types * @access public * @static */ public static function &mappingTypes() { if (!self::$mappingType) { self::$mappingType = CRM_Core_OptionGroup::values('mapping_type'); } return self::$mappingType; } public static function &stateProvinceForCountry($countryID, $field = 'name') { static $_cache = NULL; $cacheKey = "{$countryID}_{$field}"; if (!$_cache) { $_cache = array(); } if (!empty($_cache[$cacheKey])) { return $_cache[$cacheKey]; } $query = " SELECT civicrm_state_province.{$field} name, civicrm_state_province.id id FROM civicrm_state_province WHERE country_id = %1 ORDER BY name"; $params = array( 1 => array( $countryID, 'Integer', ), ); $dao = CRM_Core_DAO::executeQuery($query, $params); $result = array(); while ($dao->fetch()) { $result[$dao->id] = $dao->name; } // localise the stateProvince names if in an non-en_US locale $config = CRM_Core_Config::singleton(); global $tsLocale; if ($tsLocale != '' and $tsLocale != 'en_US') { $i18n = CRM_Core_I18n::singleton(); $i18n->localizeArray($result, array( 'context' => 'province', )); $result = CRM_Utils_Array::asort($result); } $_cache[$cacheKey] = $result; CRM_Utils_Hook::buildStateProvinceForCountry($countryID, $result); return $result; } public static function &countyForState($stateID) { if (is_array($stateID)) { $states = implode(", ", $stateID); $query = " SELECT civicrm_county.name name, civicrm_county.id id, civicrm_state_province.abbreviation abbreviation FROM civicrm_county LEFT JOIN civicrm_state_province ON civicrm_county.state_province_id = civicrm_state_province.id WHERE civicrm_county.state_province_id in ( $states ) ORDER BY civicrm_state_province.abbreviation, civicrm_county.name"; $dao = CRM_Core_DAO::executeQuery($query); $result = array(); while ($dao->fetch()) { $result[$dao->id] = $dao->abbreviation . ': ' . $dao->name; } } else { static $_cache = NULL; $cacheKey = "{$stateID}_name"; if (!$_cache) { $_cache = array(); } if (!empty($_cache[$cacheKey])) { return $_cache[$cacheKey]; } $query = " SELECT civicrm_county.name name, civicrm_county.id id FROM civicrm_county WHERE state_province_id = %1 ORDER BY name"; $params = array( 1 => array( $stateID, 'Integer', ), ); $dao = CRM_Core_DAO::executeQuery($query, $params); $result = array(); while ($dao->fetch()) { $result[$dao->id] = $dao->name; } } return $result; } /** * Given a state ID return the country ID, this allows * us to populate forms and values for downstream code * * @param $stateID int * * @return int the country id that the state belongs to * @static * @public */ static function countryIDForStateID($stateID) { if (empty($stateID)) { return CRM_Core_DAO::$_nullObject; } $query = " SELECT country_id FROM civicrm_state_province WHERE id = %1 "; $params = array(1 => array($stateID, 'Integer')); return CRM_Core_DAO::singleValueQuery($query, $params); } /** * Get all types of Greetings. * * The static array of greeting is returned * * @access public * @static * * @param $filter - get All Email Greetings - default is to get only active ones. * * @return array - array reference of all greetings. * */ public static function greeting($filter, $columnName = 'label') { $index = $filter['greeting_type'] . '_' . $columnName; // also add contactType to the array $contactType = CRM_Utils_Array::value('contact_type', $filter); if ($contactType) { $index .= '_' . $contactType; } if (NULL === self::$greeting) { self::$greeting = array(); } if (!CRM_Utils_Array::value($index, self::$greeting)) { $filterCondition = NULL; if ($contactType) { $filterVal = 'v.filter ='; switch ($contactType) { case 'Individual': $filterVal .= "1"; break; case 'Household': $filterVal .= "2"; break; case 'Organization': $filterVal .= "3"; break; } $filterCondition .= "AND (v.filter = 0 OR {$filterVal}) "; } self::$greeting[$index] = CRM_Core_OptionGroup::values($filter['greeting_type'], NULL, NULL, NULL, $filterCondition, $columnName); } return self::$greeting[$index]; } /** * Construct array of default greeting values for contact type * * @access public * @static * * @return array - array reference of default greetings. * */ public static function &greetingDefaults() { if (!self::$greetingDefaults) { $defaultGreetings = array(); $contactTypes = array( 'Individual' => 1, 'Household' => 2, 'Organization' => 3, ); foreach ($contactTypes as $contactType => $filter) { $filterCondition = " AND (v.filter = 0 OR v.filter = $filter) AND v.is_default = 1 "; foreach (CRM_Contact_BAO_Contact::$_greetingTypes as $greeting) { $tokenVal = CRM_Core_OptionGroup::values($greeting, NULL, NULL, NULL, $filterCondition, 'label'); $defaultGreetings[$contactType][$greeting] = $tokenVal; } } self::$greetingDefaults = $defaultGreetings; } return self::$greetingDefaults; } /** * Get all the Languages from database. * * @access public * @static * * @return array self::languages - array reference of all languages * */ public static function &languages() { return CRM_Core_I18n_PseudoConstant::languages(); } /** * Alias of above */ public static function &preferredLanguage() { return CRM_Core_I18n_PseudoConstant::languages(); } /** * Get all extensions * * The static array extensions * * FIXME: This is called by civix but not by any core code. We * should provide an API call which civix can use instead. * * @access public * @static * * @return array - array($fullyQualifiedName => $label) list of extensions */ public static function &getExtensions() { if (!self::$extensions) { self::$extensions = array(); $sql = ' SELECT full_name, label FROM civicrm_extension WHERE is_active = 1 '; $dao = CRM_Core_DAO::executeQuery($sql); while ($dao->fetch()) { self::$extensions[$dao->full_name] = $dao->label; } } return self::$extensions; } /** * Fetch the list of active extensions of type 'module' * * @param $fresh bool whether to forcibly reload extensions list from canonical store * @access public * @static * * @return array - array(array('prefix' => $, 'file' => $)) */ public static function getModuleExtensions($fresh = FALSE) { return CRM_Extension_System::singleton()->getMapper()->getActiveModuleFiles($fresh); } /** * Get all Activity Contacts * * The static array activityContacts is returned * * @access public * @static * * @param string $column db column name/label. * * @return array - array reference of all activity Contacts * */ public static function &activityContacts($column = 'label') { if (!self::$activityContacts) { self::$activityContacts = CRM_Core_OptionGroup::values('activity_contacts', FALSE, FALSE, FALSE, NULL, $column); } return self::$activityContacts; } /** * Get all Event Contacts * * The static array eventContacts is returned * * @access public * @static * * @param string $column db column name/label. * * @return array - array reference of all event Contacts * */ public static function &eventContacts($column = 'label') { if (!self::$eventContacts) { self::$eventContacts = CRM_Core_OptionGroup::values('event_contacts', FALSE, FALSE, FALSE, NULL, $column); } return self::$eventContacts; } /** * Get all options values * * The static array option values is returned * * @access public * @static * * @param boolean $optionGroupName - get All Option Group values- default is to get only active ones. * * @return array - array reference of all Option Group Name * */ public static function accountOptionValues($optionGroupName, $id = null, $condition = null) { $cacheKey = $optionGroupName . '_' . $condition; if (empty(self::$accountOptionValues[$cacheKey])) { self::$accountOptionValues[$cacheKey] = CRM_Core_OptionGroup::values($optionGroupName, false, false, false, $condition); } if ($id) { return CRM_Utils_Array::value($id, self::$accountOptionValues[$cacheKey]); } return self::$accountOptionValues[$cacheKey]; } /** * Get all batch modes * * The static array batchModes * * @access public * @static * * @return array - array reference of all batch modes */ public static function &getBatchMode($columnName = 'label') { if (!self::$batchModes) { self::$batchModes = CRM_Core_OptionGroup::values('batch_mode', false, false, false, null, $columnName); } return self::$batchModes; } /** * Get all batch types * * The static array batchTypes * * @access public * @static * * @return array - array reference of all batch types */ public static function &getBatchType() { if (!self::$batchTypes) { self::$batchTypes = CRM_Core_OptionGroup::values('batch_type'); } return self::$batchTypes; } /** * Get all batch statuses * * The static array batchStatues * * @access public * @static * * @return array - array reference of all batch statuses */ public static function &getBatchStatus() { if (!self::$batchStatues) { self::$batchStatues = CRM_Core_OptionGroup::values('batch_status'); } return self::$batchStatues; } /* * The static array contactType is returned * * @access public * @static * @param string $column db column name/label. * * @return array - array reference of all Types * */ public static function &contactType($column = 'label') { if (!self::$contactType) { self::$contactType = CRM_Contact_BAO_ContactType::basicTypePairs(TRUE); } return self::$contactType; } /** * Get all the auto renew options * * @access public * @static * * @return array self::autoRenew - array reference of all autoRenew * */ public static function &autoRenew() { if (!self::$autoRenew) { self::$autoRenew = CRM_Core_OptionGroup::values('auto_renew_options', FALSE, FALSE); } return self::$autoRenew; } }