Remove CRM_Core_Config_Defaults
authorTim Otten <totten@civicrm.org>
Wed, 16 Sep 2015 02:01:03 +0000 (19:01 -0700)
committerTim Otten <totten@civicrm.org>
Thu, 17 Sep 2015 22:49:32 +0000 (15:49 -0700)
CRM/Core/BAO/Country.php
CRM/Core/Config/Defaults.php [deleted file]
CRM/Core/Config/MagicMerge.php

index 56fc6cd7aa63e635d72a38f5fb12efded4d0d31a..b375dd190c4255c238ae5f2fcec3a5edee88be39 100644 (file)
@@ -150,4 +150,9 @@ class CRM_Core_BAO_Country extends CRM_Core_DAO_Country {
     return $cachedSymbol;
   }
 
+  public static function getDefaultCurrencySymbol($k = NULL) {
+    $config = CRM_Core_Config::singleton();
+    return $config->defaultCurrencySymbol(Civi::settings()->get('defaultCurrency'));
+  }
+
 }
diff --git a/CRM/Core/Config/Defaults.php b/CRM/Core/Config/Defaults.php
deleted file mode 100644 (file)
index af90e57..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-<?php
-/*
- +--------------------------------------------------------------------+
- | CiviCRM version 4.7                                                |
- +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2015                                |
- +--------------------------------------------------------------------+
- | This file is a part of CiviCRM.                                    |
- |                                                                    |
- | CiviCRM is free software; you can copy, modify, and distribute it  |
- | under the terms of the GNU Affero General Public License           |
- | Version 3, 19 November 2007 and the CiviCRM Licensing Exception.   |
- |                                                                    |
- | CiviCRM is distributed in the hope that it will be useful, but     |
- | WITHOUT ANY WARRANTY; without even the implied warranty of         |
- | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.               |
- | See the GNU Affero General Public License for more details.        |
- |                                                                    |
- | You should have received a copy of the GNU Affero General Public   |
- | License and the CiviCRM Licensing Exception along                  |
- | with this program; if not, contact CiviCRM LLC                     |
- | at info[AT]civicrm[DOT]org. If you have questions about the        |
- | GNU Affero General Public License or the licensing of CiviCRM,     |
- | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
- +--------------------------------------------------------------------+
- */
-
-/**
- *
- * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
- */
-
-/**
- * This class is a temporary place to store default setting values
- * before they will be distributed in proper places (component configurations
- * and core configuration). The name is intentionally stupid so that it will be fixed
- * ASAP.
- *
- */
-class CRM_Core_Config_Defaults {
-
-  public static function getDefaultCurrencySymbol($k = NULL) {
-    $config = CRM_Core_Config::singleton();
-    return $config->defaultCurrencySymbol(Civi::settings()->get('defaultCurrency'));
-  }
-
-}
index 48dc7a514c55fca0298a3af33e93418d94601d6a..d509a4f4015c6bd01dccf35082858a8301840892 100644 (file)
@@ -168,7 +168,7 @@ class CRM_Core_Config_MagicMerge {
       'userFrameworkResourceURL' => array('setting-url-abs', NULL, '[civicrm]/.'),
 
       'geocodeMethod' => array('callback', 'CRM_Utils_Geocode', 'getProviderClass'),
-      'defaultCurrencySymbol' => array('callback', 'CRM_Core_Config_Defaults', 'getDefaultCurrencySymbol'),
+      'defaultCurrencySymbol' => array('callback', 'CRM_Core_BAO_Country', 'getDefaultCurrencySymbol'),
     );
   }