Source of file Config.php
Size: 3,195 Bytes - Last Modified: 2015-02-05T12:57:19+01:00
/www-data/git/ricardo/src/Diglin/Ricardo/Config.php
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 | <?php /** * Diglin GmbH - Switzerland * * This file is part of a Diglin GmbH module. * * This Diglin GmbH module is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This script 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 General Public License for more details. * * @author Sylvain Rayé <support at diglin.com> * @category Diglin * @package Diglin_Ricardo * @copyright Copyright (c) 2011-2015 Diglin (http://www.diglin.com) * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3) */ namespace Diglin\Ricardo; use Diglin\Ricardo\Core\ConfigInterface; /** * Class Config * * Easy to understand :-) * Configuration class for the Ricardo API * * @package Diglin\Ricardo */ class Config extends \Zend_Config implements ConfigInterface { /** * @param array $array * @param bool $allowModifications * @throws \Exception */ public function __construct(array $array, $allowModifications = true) { parent::__construct($array, $allowModifications); if (!$this->getHost() || !$this->getPartnershipKey() || !$this->getPartnershipPasswd()) { throw new \Exception( sprintf('Default Configuration values are missing: host %s, partnership ID %s or partnership Password %s. Please fix it!', $this->getHost(), $this->getPartnershipKey(), $this->getPartnershipPasswd()) ); } } /** * @return string */ public function getHost() { return $this->get('host'); } /** * Partnership Key and Username are the same but Ricardo * provides the partnership Key and you have to use it as a username in HTTP header * * @return string */ public function getPartnershipKey() { return $this->get('partnership_key'); } /** * Clear password of the partnership. * * @return string */ public function getPartnershipPasswd() { return $this->get('partnership_passwd'); } /** * Get if we must simulate an authorization or not to Ricardo * * @return bool */ public function getAllowValidationUrl() { return (bool) $this->get('allow_authorization_simulation'); } /** * Get the username configuration of the customer * * @return string */ public function getCustomerUsername() { return $this->get('customer_username'); } /** * Get the password configuration of the customer * * @return string */ public function getCustomerPassword() { return $this->get('customer_password'); } /** * Get the partner url * * @return mixed */ public function getPartnerUrl() { return $this->get('partner_url'); } public function getLogFilePath() { return $this->get('log_path'); } } |