mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-10 11:31:26 +01:00
20 lines
485 B
PHP
20 lines
485 B
PHP
<?php
|
|
/*---------------------------------------------
|
|
/ Webservices OSC pour dolibarr
|
|
/ configuration et paramètres
|
|
/
|
|
/ Jean Heimburger juin 2006
|
|
----------------------------------------------*/
|
|
|
|
/* paramètres de connexion à OSC */
|
|
define("OSC_DB_SERVER","");
|
|
define("OSC_DB_SERVER_USERNAME", "");
|
|
define("OSC_DB_SERVER_PASSWORD", "");
|
|
define("OSC_DB_DATABASE", "");
|
|
// chemin vers sources OSC admin
|
|
define('OSCADMIN', '');
|
|
/* constantes utiles */
|
|
define("OSC_LANGUAGE_ID",1);
|
|
|
|
?>
|