Subversion Repositories Applications.papyrus

Rev

Blame | Last modification | View Log | RSS feed

<?php

// +--------------------------------------------------------------------------------+
// | annuaire_moteur.php                                                                                                        |
// +--------------------------------------------------------------------------------+
// | Copyright (c) 2000 - 2003 Tela Botanica                                                                                                            |
// +--------------------------------------------------------------------------------+
// | Moteur de recherhche dans un annuaire, les champs à         |
// | affichés sont déterminé dans annuaire_moteur_config.php   |
// +--------------------------------------------------------------------------------+
// | Auteur : Alexandre Granier <alexandre@tela-botanica.org>                                   |
// +--------------------------------------------------------------------------------+
//
// $Id: annuaire_moteur.php,v 1.1.1.1 2005-01-03 17:27:49 alex Exp $


include_once ("annuaire_moteur_config.php") ;
include_once (AM_CHEMIN_LIBRAIRIE."pack.lib.gen.php") ;
include_once (AM_CHEMIN_APPLI."annuaire_moteur_fonction.php");


if (!isset($locale)) $locale = 'fr' ;
include_once (AM_CHEMIN_APPLI."annuaire_moteur_lang_".$locale.".php") ;

include_once "php/auth.php" ;
include_once "php/auth_object_login.php" ;

function putframe () {
    global $statut, $GS_GLOBAL ;

    $objet_login = new AuthLoginClass() ;
    if (!gs_manageAuthWithObject ($GS_GLOBAL['mysql_db'], $GS_GLOBAL['link'], $objet_login, &$outputText))  {
        $res = $outputText ;
    } else {
        $res = "<tr><td>".mkengine()."</td></tr>\n" ;
        //mkquery() ;
        $res .= "<tr><td>".mkresu()."</td></tr>\n" ;
    }
    return $res ;
}

?>