Subversion Repositories Applications.papyrus

Rev

Rev 810 | Go to most recent revision | Blame | Last modification | View Log | RSS feed

<?
/*vim: set expandtab tabstop=4 shiftwidth=4: */ 
// +------------------------------------------------------------------------------------------------------+
// | PHP version 4.1                                                                                      |
// +------------------------------------------------------------------------------------------------------+
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
// +------------------------------------------------------------------------------------------------------+
// | This library is free software; you can redistribute it and/or                                        |
// | modify it under the terms of the GNU Lesser General Public                                           |
// | License as published by the Free Software Foundation; either                                         |
// | version 2.1 of the License, or (at your option) any later version.                                   |
// |                                                                                                      |
// | This library is distributed in the hope that it will be useful,                                      |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
// | Lesser General Public License for more details.                                                      |
// |                                                                                                      |
// | You should have received a copy of the GNU Lesser General Public                                     |
// | 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: annuaire.php,v 1.6 2007-04-06 08:35:46 neiluj Exp $
/**
* programme principal du module annuaire
*
* programme principal du module annuaire
*
*@package annuaire
//Auteur original :
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
*@author        Florian SCHMITT <florian@ecole-et-nature.org>
//Autres auteurs :
*@author        Aucun
*@copyright     Tela-Botanica 2000-2004
*@version       $Revision: 1.6 $
// +------------------------------------------------------------------------------------------------------+
*/

// +------------------------------------------------------------------------------------------------------+
// |                                            ENTETE du PROGRAMME                                       |
// +------------------------------------------------------------------------------------------------------+
include_once 'configuration/bottin.config.inc.php';
include_once 'configuration/annuaire.config.inc.php';
include_once INS_CHEMIN_APPLI.'bibliotheque/annuaire.fonct.php';

if (!isset($GLOBALS['lang'])) {
    $GLOBALS['lang'] = INS_LANGUE_DEFAUT ;
}
include_once INS_CHEMIN_APPLI."langues/annuaire.langue.".$GLOBALS['lang'].".inc.php" ;

/**
 *  Renvoie le code HTML de l'application
 *
 * @return  string  HTML
 */
function afficherContenuCorps () {
    if (isset($_GET['voir_fiche'])) {
        include_once INS_CHEMIN_APPLI.'bibliotheque/inscription.fonct.php';
        include_once INS_CHEMIN_APPLI.'bibliotheque/inscription.class.php';
        $res=info($_GET['voir_fiche']);
    } else {
        $res = '<h1 class="annuaire_titre1">'.INS_ANNUAIRE_MEMBRES.'</h1>'."\n" ;
            if (!$GLOBALS['AUTH']->getAuth()&&INS_NECESSITE_LOGIN)  {
                $res .= '<p class="zone_alert">'.INS_VOUS_DEVEZ_ETRE_INSCRIT.'</p>'."\n" ;
            } else {
                // S'il y a un mail a envoyé, on l'envoie
                if (isset($_POST['select']) && is_array ($_POST['select'])) $res .= envoie_mail_depuis_annuaire() ;
                        
                        //affichage du formulaire de recherche
                $res .= Annuaire_recherche() ;
            }
    }
    return $res;
}

/**------------------------------------------------------------------------------
* $Log: not supported by cvs2svn $
* Revision 1.3  2005/10/03 09:38:42  alexandre_tb
* Lorsque non loggué, on renvoie un message et non un formulaire
*
* Revision 1.2  2005/09/29 16:07:51  alexandre_tb
* En cours de production.
*
* Revision 1.1  2005/09/22 14:02:49  ddelon
* nettoyage annuaire et php5
*
* Revision 1.4  2005/09/22 13:30:49  florian
* modifs pour compatibilité XHTML Strict + corrections de bugs (mais ya encore du boulot!!)
*
*
*-- End of source  ------------------------------------------------------------*/
?>