40 lines
843 B
PHP
Raw Normal View History

<?php
class Infogreffe_Config
{
/**
* Define access for the provider
* @var array
*/
protected $config = array(
'PRD' => array(
'URL' => "https://webservices.infogreffe.fr/WSContextInfogreffe/INFOGREFFE",
'URI' => "https://webservices.infogreffe.fr/",
'USER' => "85000109",
'PASS' => "166",
),
'REC' => array(
'URL' => "https://wsrcte.extelia.fr/WSContextInfogreffe/INFOGREFFE",
'URI' => "https://wsrcte.extelia.fr/",
'USER' => "85000109",
'PASS' => "160409",
),
);
/**
* Define path to the WSDL
* @var string
*/
protected $wsdl = 'infogreffe.wsdl';
/**
* Time in hours to keep file
* @var int
*/
protected $cacheFiletime = 8;
/**
* Directory where cache file are store
* @var string
*/
2012-11-30 13:51:48 +00:00
protected $cachePath = '/cache/';
}