On déplace le fichier ini dans le répertoire de giant

This commit is contained in:
Michael RICOIS 2012-02-27 11:23:13 +00:00
parent 07fc55e60f
commit 1f231431e4
2 changed files with 2 additions and 2 deletions

View File

@ -1,14 +1,14 @@
<?php
require_once ('Functions.lib.php');
define("DATA_SET_VERSION", '1.0');
Class WSgiant extends Zend_Soap_Client
class WSgiant extends Zend_Soap_Client
{
protected $wsService = array();
protected $header;
function __construct($parametres)
{
$this->wsService = new Zend_Config_Ini(APPLICATION_PATH.'/configs/giantwebservice.ini');
$this->wsService = new Zend_Config_Ini( realpath(dirname(__FILE__)).'/giant.ini' );
if($parametres InstanceOF stdClass)
self::init($parametres);
}