448 |
ddelon |
1 |
<?
|
|
|
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 |
// +------------------------------------------------------------------------------------------------------+
|
500 |
alexandre_ |
22 |
// CVS : $Id: annuaire.php,v 1.3 2005-10-03 09:38:42 alexandre_tb Exp $
|
448 |
ddelon |
23 |
/**
|
|
|
24 |
* programme principal du module annuaire
|
|
|
25 |
*
|
|
|
26 |
* programme principal du module annuaire
|
|
|
27 |
*
|
|
|
28 |
*@package annuaire
|
|
|
29 |
//Auteur original :
|
|
|
30 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
|
|
31 |
*@author Florian SCHMITT <florian@ecole-et-nature.org>
|
|
|
32 |
//Autres auteurs :
|
|
|
33 |
*@author Aucun
|
|
|
34 |
*@copyright Tela-Botanica 2000-2004
|
500 |
alexandre_ |
35 |
*@version $Revision: 1.3 $
|
448 |
ddelon |
36 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
37 |
*/
|
|
|
38 |
|
|
|
39 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
40 |
// | ENTETE du PROGRAMME |
|
|
|
41 |
// +------------------------------------------------------------------------------------------------------+
|
484 |
alexandre_ |
42 |
include_once 'configuration/bottin.config.inc.php';
|
|
|
43 |
include_once 'configuration/annuaire.config.inc.php';
|
448 |
ddelon |
44 |
include_once INS_CHEMIN_APPLI.'bibliotheque/annuaire.fonct.php';
|
|
|
45 |
|
484 |
alexandre_ |
46 |
if (!isset($GLOBALS['lang'])) {
|
|
|
47 |
$GLOBALS['lang'] = INS_LANGUE_DEFAUT ;
|
|
|
48 |
}
|
|
|
49 |
include_once INS_CHEMIN_APPLI."langues/annuaire.langue.".$GLOBALS['lang'].".inc.php" ;
|
448 |
ddelon |
50 |
|
|
|
51 |
/**
|
|
|
52 |
* Renvoie le code HTML de l'application
|
|
|
53 |
*
|
|
|
54 |
* @return string HTML
|
|
|
55 |
*/
|
|
|
56 |
function afficherContenuCorps () {
|
|
|
57 |
$res = '<h1 class="annuaire_titre1">'.ANN_TITRE.'</h1>'."\n" ;
|
|
|
58 |
if (!$GLOBALS['AUTH']->getAuth()) {
|
500 |
alexandre_ |
59 |
$res .= ANN_LOGUEZ_VOUS ;
|
448 |
ddelon |
60 |
} else {
|
|
|
61 |
// Le code javascript des cases à cocher
|
|
|
62 |
$java =
|
|
|
63 |
'function setCheckboxes(the_form) {
|
|
|
64 |
var do_check = document.forms[the_form].elements[\'selecttotal\'].checked;
|
|
|
65 |
var elts = document.forms[the_form].elements[\'select[]\'];
|
|
|
66 |
var elts_cnt = (typeof(elts.length) != \'undefined\')
|
|
|
67 |
? elts.length
|
|
|
68 |
: 0;
|
|
|
69 |
if (elts_cnt) {
|
|
|
70 |
for (var i = 0; i < elts_cnt; i++) {
|
|
|
71 |
elts[i].checked = do_check;
|
|
|
72 |
} // Fin for
|
|
|
73 |
} else {
|
|
|
74 |
elts.checked = do_check;
|
|
|
75 |
}// Fin if... else
|
|
|
76 |
return true;
|
|
|
77 |
} // Fin de la fonction setCheckboxes()';
|
|
|
78 |
GEN_stockerCodeScript($java) ;
|
|
|
79 |
|
|
|
80 |
$res .= '<h2 class="annuaire_titre2">'.ANN_CLIQUEZ_LETTRE.'</h2>'."\n";
|
|
|
81 |
|
|
|
82 |
// S'il y a un mail a envoyé, on l'envoie
|
484 |
alexandre_ |
83 |
if (isset($_POST['select']) && is_array ($_POST['select'])) $res .= envoie_mail_depuis_annuaire() ;
|
|
|
84 |
$res .= parcourirAnnu() ;
|
448 |
ddelon |
85 |
}
|
|
|
86 |
return $res;
|
|
|
87 |
}
|
|
|
88 |
|
|
|
89 |
/**------------------------------------------------------------------------------
|
|
|
90 |
* $Log: not supported by cvs2svn $
|
500 |
alexandre_ |
91 |
* Revision 1.2 2005/09/29 16:07:51 alexandre_tb
|
|
|
92 |
* En cours de production.
|
|
|
93 |
*
|
484 |
alexandre_ |
94 |
* Revision 1.1 2005/09/22 14:02:49 ddelon
|
|
|
95 |
* nettoyage annuaire et php5
|
|
|
96 |
*
|
448 |
ddelon |
97 |
* Revision 1.4 2005/09/22 13:30:49 florian
|
|
|
98 |
* modifs pour compatibilité XHTML Strict + corrections de bugs (mais ya encore du boulot!!)
|
|
|
99 |
*
|
|
|
100 |
*
|
|
|
101 |
*-- End of source ------------------------------------------------------------*/
|
|
|
102 |
?>
|