From 90777b73c3a04e023c36417abf3b4ab7a282dfb9 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Tue, 15 Sep 2015 00:37:14 -0700 Subject: [PATCH] CRM-16373 - rm CRM_Core_Config_Variables --- CRM/Core/Config/Variables.php | 479 ---------------------------------- 1 file changed, 479 deletions(-) delete mode 100644 CRM/Core/Config/Variables.php diff --git a/CRM/Core/Config/Variables.php b/CRM/Core/Config/Variables.php deleted file mode 100644 index 56d4e282c8..0000000000 --- a/CRM/Core/Config/Variables.php +++ /dev/null @@ -1,479 +0,0 @@ - 01, - 'd' => 01, - ); - - /** - * String format for monetary amounts - * @var string - */ - public $moneyformat = '%c %a'; - - /** - * String format for monetary values - * @var string - */ - public $moneyvalueformat = '%!i'; - - /** - * Format for monetary amounts - * @var string - */ - public $currencySymbols = ''; - - /** - * Format for monetary amounts - * @var string - */ - public $defaultCurrencySymbol = '$'; - - /** - * Monetary decimal point character - * @var string - */ - public $monetaryDecimalPoint = '.'; - - /** - * Monetary thousands separator - * @var string - */ - public $monetaryThousandSeparator = ','; - - /** - * Default user framework. This basically makes Drupal 7 the default - */ - public $userFrameworkClass = 'CRM_Utils_System_Drupal'; - public $userHookClass = 'CRM_Utils_Hook_Drupal'; - - /** - * @var string|CRM_Core_Permission_Base - */ - public $userPermissionClass = 'CRM_Core_Permission_Drupal'; - - /** - * @var NULL|CRM_Core_Permission_Temp - */ - public $userPermissionTemp = NULL; - - public $userFrameworkBaseURL = NULL; - public $userFrameworkResourceURL = NULL; - public $userFrameworkFrontend = FALSE; - public $userFrameworkLogging = FALSE; - - public $maxFileSize = 2; - - /** - * Map Provider - * - * @var string - */ - public $mapProvider = NULL; - - /** - * Map API Key - * - * @var string - */ - public $mapAPIKey = NULL; - - /** - * Geocoding Provider - * - * @var string - */ - public $geoProvider = NULL; - - /** - * Geocoding API Key - * - * @var string - */ - public $geoAPIKey = NULL; - - /** - * How should we get geo code information if google map support needed - * - * @var string - */ - public $geocodeMethod = ''; - - /** - * Whether database-level logging should be performed - * @var boolean - */ - public $logging = FALSE; - - /** - * Whether public pages should display "empowered by CiviCRM" - * - * @var boolean - */ - public $empoweredBy = TRUE; - - /** - * Array of enabled add-on components (e.g. CiviContribute, CiviMail...) - * - * @var array - */ - public $enableComponents = array( - 'CiviContribute', - 'CiviPledge', - 'CiviMember', - 'CiviEvent', - 'CiviMail', - 'CiviReport', - ); - - /** - * Should payments be accepted only via SSL? - * - * @var boolean - */ - public $enableSSL = FALSE; - - /** - * Fatal error handler - * - * @var string - */ - public $fatalErrorHandler = NULL; - - /** - * Legacy encoding for file encoding conversion - * - * @var string - */ - public $legacyEncoding = 'Windows-1252'; - - /** - * Field separator for import/export csv file - * - * @var string - */ - public $fieldSeparator = ','; - - /** - * Some search settings - */ - public $includeWildCardInName = 1; - public $includeEmailInName = 1; - public $includeNickNameInName = 0; - - public $smartGroupCacheTimeout = 5; - - public $defaultSearchProfileID = NULL; - - /** - * Dashboard timeout - */ - public $dashboardCacheTimeout = 1440; - - /** - * Flag to indicate if acl cache is NOT to be reset - */ - public $doNotResetCache = 0; - - /** - * Optimization related variables - */ - public $includeAlphabeticalPager = 1; - public $includeOrderByClause = 1; - - /** - * PDF receipt as attachment is disabled by default (CRM-8350) - */ - public $doNotAttachPDFReceipt = FALSE; - - /** - * Path to wkhtmltopdf if available - */ - public $wkhtmltopdfPath = FALSE; - - /** - * Allow second-degree relations permission to edit contacts - */ - public $secondDegRelPermissions = FALSE; - - - /** - * Allow second-degree relations permission to edit contacts - */ - public $wpBasePage = NULL; - - public $verpSeparator = '.', $mailThrottleTime = 0, $mailerJobsMax = 0, $mailerJobSize = 0, $mailerBatchLimit = 0; - - public $inheritLocale = 0; - -} -// end CRM_Core_Config -- 2.25.1