Subversion Repositories Applications.papyrus

Rev

Rev 484 | 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.3 2005-10-03 09:38:42 alexandre_tb 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.3 $
// +------------------------------------------------------------------------------------------------------+
*/

// +------------------------------------------------------------------------------------------------------+
// |                                            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 () {
    $res = '<h1 class="annuaire_titre1">'.ANN_TITRE.'</h1>'."\n" ;
    if (!$GLOBALS['AUTH']->getAuth())  {
        $res .= ANN_LOGUEZ_VOUS ;
    } else {
        // Le code javascript des cases à cocher
        $java =
            'function setCheckboxes(the_form) {
                var do_check = document.forms[the_form].elements[\'selecttotal\'].checked;
                var elts = document.forms[the_form].elements[\'select[]\'];
                var elts_cnt = (typeof(elts.length) != \'undefined\')
                                ? elts.length
                                : 0;
                if (elts_cnt) {
                        for (var i = 0; i < elts_cnt; i++) {
                                elts[i].checked = do_check;
                        } // Fin for
                } else {
                        elts.checked = do_check;
                }// Fin if... else
                return true;
            } // Fin de la fonction setCheckboxes()';
        GEN_stockerCodeScript($java) ;

        $res .= '<h2 class="annuaire_titre2">'.ANN_CLIQUEZ_LETTRE.'</h2>'."\n";

            // S'il y a un mail a envoyé, on l'envoie
        if (isset($_POST['select']) && is_array ($_POST['select'])) $res .= envoie_mail_depuis_annuaire() ;
        $res .= parcourirAnnu() ;
    }
    return $res;
}

/**------------------------------------------------------------------------------
* $Log: not supported by cvs2svn $
* 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  ------------------------------------------------------------*/
?>