Subversion Repositories Applications.papyrus

Rev

Rev 448 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
448 ddelon 1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 4.1                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
8
// | This library is free software; you can redistribute it and/or                                        |
9
// | modify it under the terms of the GNU Lesser General Public                                           |
10
// | License as published by the Free Software Foundation; either                                         |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
12
// |                                                                                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
16
// | Lesser General Public License for more details.                                                      |
17
// |                                                                                                      |
18
// | You should have received a copy of the GNU Lesser General Public                                     |
19
// | License along with this library; if not, write to the Free Software                                  |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
21
// +------------------------------------------------------------------------------------------------------+
679 alexandre_ 22
// CVS : $Id: annuaire_backoffice.php,v 1.2 2006-01-02 09:51:54 alexandre_tb Exp $
448 ddelon 23
/**
24
* programme principal du module annuaire_moteur
25
*
26
* programme principal du module annuaire_moteur
27
*
28
*@package annuaire
29
//Auteur original :
30
*@author        Alexandre Granier <alexandre@tela-botanica.org>
31
//Autres auteurs :
32
*@author        Aucun
33
*@copyright     Tela-Botanica 2000-2004
679 alexandre_ 34
*@version       $Revision: 1.2 $
448 ddelon 35
// +------------------------------------------------------------------------------------------------------+
36
*/
37
 
38
// +------------------------------------------------------------------------------------------------------+
39
// |                                            ENTETE du PROGRAMME                                       |
40
// +------------------------------------------------------------------------------------------------------+
41
 
42
// +------------------------------------------------------------------------------------------------------+
43
// |                                            ENTETE du PROGRAMME                                       |
44
// +------------------------------------------------------------------------------------------------------+
679 alexandre_ 45
include_once 'configuration/bottin.config.inc.php';
448 ddelon 46
include_once INS_CHEMIN_APPLI.'configuration/annuaire_backoffice.config.inc.php';
679 alexandre_ 47
include_once INS_CHEMIN_APPLI.'bibliotheque/annuaire.fonct.php';
448 ddelon 48
include_once INS_CHEMIN_APPLI.'bibliotheque/annuaire_backoffice.fonct.php';
679 alexandre_ 49
include_once INS_CHEMIN_APPLI.'bibliotheque/inscription.class.php';
50
include_once INS_CHEMIN_APPLI.'bibliotheque/inscription.fonct.php';
448 ddelon 51
 
679 alexandre_ 52
if (!isset($GLOBALS['lang'])) {
53
    $GLOBALS['lang'] = INS_LANGUE_DEFAUT ;
54
}
55
include_once INS_CHEMIN_APPLI."langues/bottin_langue_".$GLOBALS['lang'].".inc.php" ;
56
 
448 ddelon 57
if (isset($lang)) {
679 alexandre_ 58
    include_once INS_CHEMIN_APPLI."/langues/annuaire_backoffice.langue.$lang.inc.php" ;
448 ddelon 59
} else {
679 alexandre_ 60
    include_once INS_CHEMIN_APPLI.'/langues/annuaire_backoffice.langue.fr.inc.php' ;
448 ddelon 61
}
62
 
63
define ("ANN_MAIL_TOUS", 1) ;
64
define ("ANN_MAIL_TOUS_ENVOIE", 2) ;
65
 
66
 
67
function afficherContenuCorps () {
68
    global $statut ;
69
 
70
    if (!$GLOBALS['AUTH']->getAuth())  {
71
        $res = AUTH_formulaire_login() ;
72
    } else {
679 alexandre_ 73
        if (isset($_REQUEST[INS_CHAMPS_ID])) {
74
            include_once (INS_CHEMIN_APPLI.'bibliotheque/edition_fiche.php');
75
            $GLOBALS['ins_url']->addQueryString (INS_CHAMPS_ID, $_REQUEST[INS_CHAMPS_ID]) ;
448 ddelon 76
            return putFrame() ;
77
        }
78
        if (isset ($_GET['action'])) {
679 alexandre_ 79
            include_once (INS_CHEMIN_APPLI.'bibliotheque/mail_tous.php') ;
448 ddelon 80
            return putFrame() ;
81
        }
679 alexandre_ 82
        if (isset($_REQUEST['ajouter'])) {
83
        	return ajouterInscrit() ;
84
        }
448 ddelon 85
        $res = "<div>".mkengine()."</div>\n" ;
86
    }
87
    return $res ;
88
}
89
 
90
?>