a50d36e7b4
- correction de bug
56 lines
2.3 KiB
PHP
56 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* Gestion des parametres de Giant.
|
|
*
|
|
**/
|
|
|
|
//define('CONF_MEL_FROM', 'supportdev@scores-decisions.com');
|
|
//define('CONF_MEL_TO', 'sbeaugrand@scores-decisions.com');
|
|
//define('DEBUG_SOAP', 1);
|
|
set_time_limit(100);
|
|
|
|
define('CONF_MEL_FROM', 'contact@scores-decisions.com');
|
|
define('DEBUG_SOAP', 0);
|
|
|
|
|
|
define ('GIANT_MODETEST', true);
|
|
//Giant search
|
|
define ('GIANT_SEARCH_WSDL', 'https://giant-tst.graydon.nl/search/v1?wsdl');
|
|
define ('GIANT_SEARCH_USER','006');
|
|
define ('GIANT_SEARCH_PASS','ClaudeMonet');
|
|
//Giant credit-data
|
|
define ('GIANT_CREDIT_WSDL', 'https://giant-tst.graydon.nl/credit-data/v1?wsdl');
|
|
define ('GIANT_CREDIT_USER','006');
|
|
define ('GIANT_CREDIT_PASS','ClaudeMonet');
|
|
|
|
//definir les parametre de pagination
|
|
define ('NUM_ROWS', $_SESSION['tabInfo']['nbReponses']);
|
|
define ('MAX_ROWS', 200);
|
|
|
|
//Permet de definir le temps de sauvegarde des rapports ! ce compte en jours !
|
|
define ('_LIMIT_DATE_RAPPORT_', 30);
|
|
|
|
//Les define pour les test Provider ( ne pas toucher )
|
|
define ('_DEBUG_MODE_', true);
|
|
define ('_LOGS_PROVIDER_', PATH_DATA.'/giant/logs');
|
|
if(!file_exists(_LOGS_PROVIDER_))
|
|
mkdir(_LOGS_PROVIDER_);
|
|
|
|
require_once (realpath(dirname(__FILE__)).'/modulesGiants/Class/SoapErrorCatch.php');
|
|
require_once (realpath(dirname(__FILE__)).'/modulesGiants/Class/ProviderStatus.php');
|
|
require_once (realpath(dirname(__FILE__)).'/modulesGiants/ClassWsdl/CreditDataPortType/IncludedFiles.php');
|
|
require_once (realpath(dirname(__FILE__)).'/modulesGiants/ClassWsdl/CreditDataPortType.php');
|
|
require_once (realpath(dirname(__FILE__)).'/modulesGiants/ClassWsdl/SearchPortType/IncludedFiles.php');
|
|
require_once (realpath(dirname(__FILE__)).'/modulesGiants/ClassWsdl/Search.php');
|
|
|
|
//Doit toujour être placé a la fin du fichier !
|
|
require_once (realpath(dirname(__FILE__)).'/modulesGiants/FonctionDivers.php');
|
|
require_once (realpath(dirname(__FILE__)).'/modulesGiants/OrderStatus.php');
|
|
require_once (realpath(dirname(__FILE__)).'/modulesGiants/SoapErreur.php');
|
|
require_once (realpath(dirname(__FILE__)).'/modulesGiants/SwitchFunctionSoap.php');
|
|
require_once (realpath(dirname(__FILE__)).'/modulesGiants/Pagination.php');
|
|
|
|
require_once (realpath(dirname(__FILE__)).'/modulesGiants/Class/AdvancedSearch.Class.php');
|
|
require_once (realpath(dirname(__FILE__)).'/modulesGiants/Class/SimpleSearch.Class.php');
|
|
?>
|