235 |
alex |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
// +--------------------------------------------------------------------------------+
|
|
|
4 |
// | annuaire_moteur.php |
|
|
|
5 |
// +--------------------------------------------------------------------------------+
|
|
|
6 |
// | Copyright (c) 2000 - 2003 Tela Botanica |
|
|
|
7 |
// +--------------------------------------------------------------------------------+
|
|
|
8 |
// | Moteur de recherhche dans un annuaire, les champs à |
|
|
|
9 |
// | affichés sont déterminé dans annuaire_moteur_config.php |
|
|
|
10 |
// +--------------------------------------------------------------------------------+
|
|
|
11 |
// | Auteur : Alexandre Granier <alexandre@tela-botanica.org> |
|
|
|
12 |
// +--------------------------------------------------------------------------------+
|
|
|
13 |
//
|
|
|
14 |
// $Id: annuaire_moteur.php,v 1.1.1.1 2005-01-03 17:27:49 alex Exp $
|
|
|
15 |
|
|
|
16 |
|
|
|
17 |
include_once ("annuaire_moteur_config.php") ;
|
|
|
18 |
include_once (AM_CHEMIN_LIBRAIRIE."pack.lib.gen.php") ;
|
|
|
19 |
include_once (AM_CHEMIN_APPLI."annuaire_moteur_fonction.php");
|
|
|
20 |
|
|
|
21 |
|
|
|
22 |
if (!isset($locale)) $locale = 'fr' ;
|
|
|
23 |
include_once (AM_CHEMIN_APPLI."annuaire_moteur_lang_".$locale.".php") ;
|
|
|
24 |
|
|
|
25 |
include_once "php/auth.php" ;
|
|
|
26 |
include_once "php/auth_object_login.php" ;
|
|
|
27 |
|
|
|
28 |
function putframe () {
|
|
|
29 |
global $statut, $GS_GLOBAL ;
|
|
|
30 |
|
|
|
31 |
$objet_login = new AuthLoginClass() ;
|
|
|
32 |
if (!gs_manageAuthWithObject ($GS_GLOBAL['mysql_db'], $GS_GLOBAL['link'], $objet_login, &$outputText)) {
|
|
|
33 |
$res = $outputText ;
|
|
|
34 |
} else {
|
|
|
35 |
$res = "<tr><td>".mkengine()."</td></tr>\n" ;
|
|
|
36 |
//mkquery() ;
|
|
|
37 |
$res .= "<tr><td>".mkresu()."</td></tr>\n" ;
|
|
|
38 |
}
|
|
|
39 |
return $res ;
|
|
|
40 |
}
|
|
|
41 |
|
|
|
42 |
?>
|