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 |
// +------------------------------------------------------------------------------------------------------+
|
1088 |
florian |
22 |
// CVS : $Id: annuaire_backoffice.php,v 1.4 2006-12-01 16:02:16 florian 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
|
1088 |
florian |
34 |
*@version $Revision: 1.4 $
|
448 |
ddelon |
35 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
36 |
*/
|
|
|
37 |
|
|
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
39 |
// | ENTETE du PROGRAMME |
|
|
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
679 |
alexandre_ |
41 |
include_once 'configuration/bottin.config.inc.php';
|
|
|
42 |
include_once INS_CHEMIN_APPLI.'bibliotheque/annuaire.fonct.php';
|
448 |
ddelon |
43 |
include_once INS_CHEMIN_APPLI.'bibliotheque/annuaire_backoffice.fonct.php';
|
679 |
alexandre_ |
44 |
include_once INS_CHEMIN_APPLI.'bibliotheque/inscription.class.php';
|
|
|
45 |
include_once INS_CHEMIN_APPLI.'bibliotheque/inscription.fonct.php';
|
1081 |
florian |
46 |
$lang=INS_LANGUE_DEFAUT;
|
|
|
47 |
define ("ANN_MAIL_TOUS", 1) ;
|
|
|
48 |
define ("ANN_MAIL_TOUS_ENVOIE", 2) ;
|
448 |
ddelon |
49 |
|
|
|
50 |
function afficherContenuCorps () {
|
|
|
51 |
global $statut ;
|
|
|
52 |
|
|
|
53 |
if (!$GLOBALS['AUTH']->getAuth()) {
|
|
|
54 |
$res = AUTH_formulaire_login() ;
|
|
|
55 |
} else {
|
679 |
alexandre_ |
56 |
if (isset($_REQUEST[INS_CHAMPS_ID])) {
|
|
|
57 |
include_once (INS_CHEMIN_APPLI.'bibliotheque/edition_fiche.php');
|
|
|
58 |
$GLOBALS['ins_url']->addQueryString (INS_CHAMPS_ID, $_REQUEST[INS_CHAMPS_ID]) ;
|
448 |
ddelon |
59 |
return putFrame() ;
|
|
|
60 |
}
|
|
|
61 |
if (isset ($_GET['action'])) {
|
679 |
alexandre_ |
62 |
include_once (INS_CHEMIN_APPLI.'bibliotheque/mail_tous.php') ;
|
448 |
ddelon |
63 |
return putFrame() ;
|
|
|
64 |
}
|
679 |
alexandre_ |
65 |
if (isset($_REQUEST['ajouter'])) {
|
|
|
66 |
return ajouterInscrit() ;
|
|
|
67 |
}
|
448 |
ddelon |
68 |
$res = "<div>".mkengine()."</div>\n" ;
|
|
|
69 |
}
|
|
|
70 |
return $res ;
|
|
|
71 |
}
|
|
|
72 |
|
|
|
73 |
?>
|