19,7 → 19,7 |
// | License along with this library; if not, write to the Free Software | |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
// +------------------------------------------------------------------------------------------------------+ |
// CVS : $Id: bottin.config.inc.php,v 1.18 2007-08-29 12:46:59 alexandre_tb Exp $ |
// CVS : $Id: bottin.config.inc.php,v 1.19 2007-09-06 08:26:05 alexandre_tb Exp $ |
/** |
* Fichier de configuration de l'application d'inscription/annuaire |
* |
32,7 → 32,7 |
//Autres auteurs : |
*@author Aucun |
*@copyright Tela-Botanica 2000-2004 |
*@version $Revision: 1.18 $ $Date: 2007-08-29 12:46:59 $ |
*@version $Revision: 1.19 $ $Date: 2007-09-06 08:26:05 $ |
// +------------------------------------------------------------------------------------------------------+ |
*/ |
//================================= CONSTANTES DB ================================== |
102,12 → 102,6 |
define ('INS_CHAMPS_LOGO', 'a_logo'); |
|
|
if (INS_CHAMPS_LETTRE != '') { |
/** adresse d'inscription à la newsletter */ |
define ('INS_MAIL_INSCRIPTION_LISTE', 'newsletter-subscribe@domaine.org'); |
/** adresse de désinscription à la newsletter */ |
define ('INS_MAIL_DESINSCRIPTION_LISTE', 'newsletter-unsubscribe@domaine.org'); |
} |
|
//teste si l'on est dans l'application Papyrus |
if (!defined('PAP_VERSION')) { //pas dans Papyrus |
122,12 → 116,17 |
// Formation du dsn |
$dsn = INS_PROTOCOLE.'://'.INS_UTILISATEUR.':'.INS_MOT_DE_PASSE_DB.'@'.INS_HOTE.'/'.INS_BASE; |
|
include_once PAP_CHEMIN_RACINE.'api/pear/DB.php'; //appel de la librairie DB de PEAR |
/** Pour les inclusions de bibliotheques PEAR, mieux vaux |
* utiliser celle sur le serveur, sinon utiliser la fonction set_init_path |
*/ |
|
|
include_once 'DB.php'; //appel de la librairie DB de PEAR |
/** Variable globale contenant l'objet d'accès à la base de donnée */ |
$GLOBALS['ins_db'] =& DB::connect($dsn); |
|
//=============================== AUTHENTIFICATION ================================= |
include_once PAP_CHEMIN_RACINE.'api/pear/Auth.php'; //appel de la librairie Auth de PEAR |
include_once 'Auth.php'; //appel de la librairie Auth de PEAR |
/** Nom de la session PHP */ |
define ('INS_NOM_SESSION','Educ-Envir.org'); |
/** Durée de la session PHP */ |
146,7 → 145,7 |
$GLOBALS['AUTH']->setShowLogin(false); |
|
//==================================== LES URLS ==================================== |
include_once PAP_CHEMIN_RACINE.'api/pear/Net_URL.php'; //appel de la librairie Net_URL de PEAR |
include_once 'Net/URL.php'; //appel de la librairie Net_URL de PEAR |
/** Variable globale contenant l'objet d'accès à l'URL de base de l'application, un objet Net_URL*/ |
$GLOBALS['ins_url'] = new Net_URL('http://localhost/'); |
|
232,9 → 231,21 |
define ('INS_URL_PREFIXE', 'ins_') ; // Indique le préfixe de l'url http://www.mondomaine.org/prefix____ |
} |
|
/** Constante concernant la carte google */ |
define ('INS_GOOGLE_KEY', ''); |
|
if (defined ('INS_GOOGLE_KEY')) { |
define ('INS_GOOGLE_CENTRE_LAT', ''); |
define ('INS_GOOGLE_CENTRE_LON', ''); |
define ('INS_GOOGLE_ALTITUDE', ''); // de 1 a 15 |
} |
|
/* +--Fin du code ----------------------------------------------------------------------------------------+ |
* |
* $Log: not supported by cvs2svn $ |
* Revision 1.18 2007-08-29 12:46:59 alexandre_tb |
* dans la config "hors papyrus", appel du fichier bottin.langues.... a la place de ins_annuaire.lang.... |
* |
* Revision 1.17 2007-06-25 12:46:59 florian |
* suppression des constantes en double |
* |