PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins
/
sf-booking
/
payment-gateway
/
MangoPay
/
Libraries
<?php namespace MangoPay\Libraries; /** * Configuration settings */ class Configuration { /** * Client Id * @var string */ public $ClientId; /** * Client password * @var string */ public $ClientPassword; /** * Base URL to MangoPay API * @var string */ /*Production URL changes to {public $BaseUrl = 'https://api.mangopay.com'}*/ public $BaseUrl = 'https://api.sandbox.mangopay.com'; /** * Path to folder with temporary files (with permissions to write) */ public $TemporaryFolder = null; /** * Absolute path to file holding one or more certificates to verify the peer with. * If empty - don't verifying the peer's certificate. * @var string */ public $CertificatesFilePath = ''; /** * [INTERNAL USAGE ONLY] * Switch debug mode: log all request and response data */ public $DebugMode = false; /** * Set the logging class if DebugMode is enabled */ public $LogClass = 'MangoPay\Libraries\Logs'; /** * Set the cURL connection timeout limit (in seconds) */ public $CurlConnectionTimeout = 30; /** * Set the cURL response timeout limit (in seconds) */ public $CurlResponseTimeout = 80; /** * Set the proxy host */ public $HostProxy = null; /** * Set the user:password proxy */ public $UserPasswordProxy = null; }
[+]
..
[-] Error.php
[edit]
[-] ApiOAuth.php
[edit]
[-] ResponseException.php
[edit]
[-] AuthorizationTokenManager.php
[edit]
[-] UrlTool.php
[edit]
[-] HttpResponse.php
[edit]
[-] HttpCurl.php
[edit]
[-] Exception.php
[edit]
[-] Logs.php
[edit]
[-] IStorageStrategy.php
[edit]
[-] OAuthToken.php
[edit]
[-] Dto.php
[edit]
[-] Upload.php
[edit]
[-] HttpBase.php
[edit]
[-] RequestType.php
[edit]
[-] ApiBase.php
[edit]
[-] Configuration.php
[edit]
[-] EntityBase.php
[edit]
[-] RestTool.php
[edit]
[-] AuthenticationHelper.php
[edit]
[-] DefaultStorageStrategy.php
[edit]
[-] Document.php
[edit]