PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
dokan-pro
/
vendor
/
paypal
/
sdk-core-php
/
lib
/
PayPal
/
Core
<?php namespace PayPal\Core; /** * PPConfigManager loads the SDK configuration file and * hands out appropriate config params to other classes */ class PPConfigManager { private $config; //default config values public static $defaults = array( "http.ConnectionTimeOut" => "30", "http.TimeOut" => "60", "http.Retry" => "5", ); /** * @var PPConfigManager */ private static $instance; private function __construct() { $configFile = null; if (defined('PP_CONFIG_PATH')) { // if PP_CONFIG_PATH *is set* but not set to a string with length > 0 // then let's disable ini file loading if (is_string(PP_CONFIG_PATH) && strlen(PP_CONFIG_PATH) > 0) { $configFile = PP_CONFIG_PATH . DIRECTORY_SEPARATOR . 'sdk_config.ini'; } } else { $configFile = implode(DIRECTORY_SEPARATOR, array(dirname(__FILE__), "..", "config", "sdk_config.ini")); } if (!is_null($configFile) && file_exists($configFile)) { $this->load($configFile); } } // create singleton object for PPConfigManager public static function getInstance() { if (!isset(self::$instance)) { self::$instance = new PPConfigManager(); } return self::$instance; } //used to load the file private function load($fileName) { //Gracefully check for ini file $parsedConfig = @parse_ini_file($fileName); if (!empty($parsedConfig)) { $this->config = $parsedConfig; } else { $this->config = array(); } } /** * simple getter for configuration params * If an exact match for key is not found, * does a "contains" search on the key */ public function get($searchKey) { if (array_key_exists($searchKey, $this->config)) { return $this->config[$searchKey]; } else { $arr = array(); foreach ($this->config as $k => $v) { if (strstr($k, $searchKey)) { $arr[$k] = $v; } } return $arr; } } /** * Utility method for handling account configuration * return config key corresponding to the API userId passed in * * If $userId is null, returns config keys corresponding to * all configured accounts */ public function getIniPrefix($userId = null) { if ($userId == null) { $arr = array(); foreach ($this->config as $key => $value) { $pos = strpos($key, '.'); if (strstr($key, "acct")) { $arr[] = substr($key, 0, $pos); } } return array_unique($arr); } else { $iniPrefix = array_search($userId, $this->config); $pos = strpos($iniPrefix, '.'); $acct = substr($iniPrefix, 0, $pos); return $acct; } } /** * returns the config file hashmap * */ private function getConfigHashmap() { return $this->config; } /** * use the default configuration if it is not passed in hashmap */ public static function getConfigWithDefaults($config = null) { if (!is_array(PPConfigManager::getInstance()->getConfigHashmap()) && $config == null) return PPConfigManager::$defaults; return array_merge(PPConfigManager::$defaults, ($config != null) ? $config : PPConfigManager::getInstance()->getConfigHashmap()); } }
[+]
..
[-] PPXmlMessage.php
[edit]
[-] PPConfigManager.php
[edit]
[-] PPConnectionManager.php
[edit]
[-] PPHttpConnection.php
[edit]
[-] PPBaseService.php
[edit]
[-] PPConstants.php
[edit]
[-] PPLoggingLevel.php
[edit]
[-] PPRequest.php
[edit]
[-] PPHttpConfig.php
[edit]
[-] PPXmlFaultMessage.php
[edit]
[-] PPAPIService.php
[edit]
[-] PPUtils.php
[edit]
[-] PPLoggingManager.php
[edit]
[-] PPCredentialManager.php
[edit]
[-] PPMessage.php
[edit]
[-] cacert.pem
[edit]