| Server IP : 23.111.136.34 / Your IP : 216.73.216.136 Web Server : Apache System : Linux servidor.eurohost.com.br 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : meusitei ( 1072) PHP Version : 5.6.40 Disable Function : show_source, system, shell_exec, passthru, proc_open MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/meusitei/public_html/painel/mkt/MailWizzApi/ |
Upload File : |
<?php
/**
* This file contains the configuration class for the MailWizzApi PHP-SDK.
*
* @author Serban George Cristian <cristian.serban@mailwizz.com>
* @link http://www.mailwizz.com/
* @copyright 2013-2017 http://www.mailwizz.com/
*/
/**
* MailWizzApi_Config contains the configuration class that is injected at runtime into the main application.
*
* It's only purpose is to set the needed data so that the API calls will run without problems.
*
* @author Serban George Cristian <cristian.serban@mailwizz.com>
* @package MailWizzApi
* @since 1.0
*/
class MailWizzApi_Config extends MailWizzApi_Base
{
/**
* @var string the api public key
*/
public $publicKey;
/**
* @var string the api private key.
*/
public $privateKey;
/**
* @var string the preffered charset.
*/
public $charset = 'utf-8';
/**
* @var string the API url.
*/
private $_apiUrl;
/**
* Constructor
* @param array the config array that will populate the class properties.
*/
public function __construct(array $config = array())
{
$this->populateFromArray($config);
}
/**
* Setter for the API url.
*
* Please note, this url should NOT contain any endpoint,
* just the base url to the API.
*
* Also, a basic url check is done, but you need to make sure the url is valid.
*
* @param mixed $url
* @return MailWizzApi_Config
*/
public function setApiUrl($url)
{
if (!parse_url($url, PHP_URL_HOST)) {
throw new Exception('Please set a valid api base url.');
}
$this->_apiUrl = trim($url, '/') . '/';
return $this;
}
/**
* Getter for the API url.
*
* Also, you can use the $endpoint param to point the request to a certain endpoint.
*
* @param string $endpoint
* @return string
*/
public function getApiUrl($endpoint = null)
{
if ($this->_apiUrl === null) {
throw new Exception('Please set the api base url.');
}
return $this->_apiUrl . $endpoint;
}
}