1 |
<?php
|
1 |
<?php
|
2 |
/*vim: set expandtab tabstop=4 shiftwidth=4: */
|
2 |
/*vim: set expandtab tabstop=4 shiftwidth=4: */
|
3 |
// +------------------------------------------------------------------------------------------------------+
|
3 |
// +------------------------------------------------------------------------------------------------------+
|
4 |
// | PHP version 4.1 |
|
4 |
// | PHP version 4.1 |
|
5 |
// +------------------------------------------------------------------------------------------------------+
|
5 |
// +------------------------------------------------------------------------------------------------------+
|
6 |
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
|
6 |
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
|
7 |
// +------------------------------------------------------------------------------------------------------+
|
7 |
// +------------------------------------------------------------------------------------------------------+
|
8 |
// | This library is free software; you can redistribute it and/or |
|
8 |
// | This library is free software; you can redistribute it and/or |
|
9 |
// | modify it under the terms of the GNU General Public |
|
9 |
// | modify it under the terms of the GNU General Public |
|
10 |
// | License as published by the Free Software Foundation; either |
|
10 |
// | License as published by the Free Software Foundation; either |
|
11 |
// | version 2.1 of the License, or (at your option) any later version. |
|
11 |
// | version 2.1 of the License, or (at your option) any later version. |
|
12 |
// | |
|
12 |
// | |
|
13 |
// | This library is distributed in the hope that it will be useful, |
|
13 |
// | This library is distributed in the hope that it will be useful, |
|
14 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
14 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
15 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
15 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
16 |
// | General Public License for more details. |
|
16 |
// | General Public License for more details. |
|
17 |
// | |
|
17 |
// | |
|
18 |
// | You should have received a copy of the GNU General Public |
|
18 |
// | You should have received a copy of the GNU General Public |
|
19 |
// | License along with this library; if not, write to the Free Software |
|
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 |
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
22 |
// CVS : $Id: projet.php,v 1.1 2005-09-22 14:02:48 ddelon Exp $
|
22 |
// CVS : $Id: projet.php,v 1.2 2005-09-26 20:18:27 ddelon Exp $
|
23 |
/**
|
23 |
/**
|
24 |
* Application projet
|
24 |
* Application projet
|
25 |
*
|
25 |
*
|
26 |
* Fichier d'appel pour papyrus
|
26 |
* Fichier d'appel pour papyrus
|
27 |
*
|
27 |
*
|
28 |
*@package projet
|
28 |
*@package projet
|
29 |
//Auteur original :
|
29 |
//Auteur original :
|
30 |
*@author Alexandre Granier <alexandre@tela-botanica.org>
|
30 |
*@author Alexandre Granier <alexandre@tela-botanica.org>
|
31 |
//Autres auteurs :
|
31 |
//Autres auteurs :
|
32 |
*@author Aucun
|
32 |
*@author Aucun
|
33 |
*@copyright Tela-Botanica 2000-2004
|
33 |
*@copyright Tela-Botanica 2000-2004
|
34 |
*@version $Revision: 1.1 $
|
34 |
*@version $Revision: 1.2 $
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
36 |
*/
|
36 |
*/
|
37 |
|
37 |
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
39 |
// | ENTETE du PROGRAMME |
|
39 |
// | ENTETE du PROGRAMME |
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
41 |
|
41 |
|
42 |
include_once 'configuration/projet.config.inc.php' ;
|
42 |
include_once 'configuration/projet.config.inc.php' ;
|
43 |
include_once PROJET_CHEMIN_CLASSES.'projetControleur.class.php' ;
|
43 |
include_once PROJET_CHEMIN_CLASSES.'projetControleur.class.php' ;
|
44 |
|
44 |
|
45 |
// Inclusion des styles selon papyrus
|
45 |
// Inclusion des styles selon papyrus
|
46 |
if (function_exists("GEN_stockerStyleExterne")) {
|
46 |
if (function_exists("GEN_stockerStyleExterne")) {
|
47 |
GEN_stockerStyleExterne('projet','client/projet/projet.css') ;
|
47 |
GEN_stockerStyleExterne('projet','client/projet/projet.css') ;
|
48 |
GEN_stockerStyleExterne('projet_arbre','client/projet/arbre.css') ;
|
48 |
GEN_stockerStyleExterne('projet_arbre','client/projet/arbre.css') ;
|
49 |
}
|
49 |
}
|
50 |
|
50 |
|
51 |
// +------------------------------------------------------------------------------------------------------+
|
51 |
// +------------------------------------------------------------------------------------------------------+
|
52 |
// | LISTE des constantes |
|
52 |
// | LISTE des constantes |
|
53 |
// +------------------------------------------------------------------------------------------------------+
|
53 |
// +------------------------------------------------------------------------------------------------------+
|
54 |
|
54 |
|
55 |
define ("PROJET_DEFAUT", 1) ;
|
55 |
define ("PROJET_DEFAUT", 1) ;
|
56 |
define ("PROJET_VOIR", 2) ;
|
56 |
define ("PROJET_VOIR", 2) ;
|
57 |
define ('PROJET_MENU_AFFICHER_CONTENU_CORPS', 1) ;
|
57 |
define ('PROJET_MENU_AFFICHER_CONTENU_CORPS', 1) ;
|
58 |
// +------------------------------------------------------------------------------------------------------+
|
58 |
// +------------------------------------------------------------------------------------------------------+
|
59 |
// | LISTE de FONCTIONS |
|
59 |
// | LISTE de FONCTIONS |
|
60 |
// +------------------------------------------------------------------------------------------------------+
|
60 |
// +------------------------------------------------------------------------------------------------------+
|
61 |
|
61 |
|
62 |
if (isset($_REQUEST[PROJET_VARIABLE_ID_PROJET])) {
|
62 |
if (isset($_REQUEST[PROJET_VARIABLE_ID_PROJET])) {
|
63 |
function afficherContenuNavigation () {
|
63 |
function afficherContenuNavigation () {
|
64 |
$GLOBALS['url']->addQueryString(PROJET_VARIABLE_ID_PROJET, $_REQUEST[PROJET_VARIABLE_ID_PROJET]) ;
|
64 |
$GLOBALS['url']->addQueryString(PROJET_VARIABLE_ID_PROJET, $_REQUEST[PROJET_VARIABLE_ID_PROJET]) ;
|
65 |
if (empty($_REQUEST[PROJET_VARIABLE_ACTION])) {
|
65 |
if (empty($_REQUEST[PROJET_VARIABLE_ACTION])) {
|
66 |
$_REQUEST[PROJET_VARIABLE_ACTION] = PROJET_ACTION_VOIR_RESUME ;
|
66 |
$_REQUEST[PROJET_VARIABLE_ACTION] = PROJET_ACTION_VOIR_RESUME ;
|
67 |
}
|
67 |
}
|
68 |
$res = '' ;
|
68 |
$res = '' ;
|
69 |
if (isset($GLOBALS['_GEN_commun']['info_application']->presentation) && $GLOBALS['_GEN_commun']['info_application']->presentation == 'arbre') {
|
69 |
if (isset($GLOBALS['_GEN_commun']['info_application']->presentation) && (($GLOBALS['_GEN_commun']['info_application']->presentation == 'arbre')||($GLOBALS['_GEN_commun']['info_application']->presentation == 'liste'))) {
|
70 |
$res .= '<ul class="onglets">';
|
70 |
$res .= '<ul class="onglets">';
|
71 |
$GLOBALS['url']->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_RESUME);
|
71 |
$GLOBALS['url']->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_RESUME);
|
72 |
$res .= '<li class="'.cma(PROJET_ACTION_VOIR_RESUME).'"><a href="'.$GLOBALS['url']->getURL().'">'.PROJET_SYNTHESE.'</a></li>';
|
72 |
$res .= '<li class="'.cma(PROJET_ACTION_VOIR_RESUME).'"><a href="'.$GLOBALS['url']->getURL().'">'.PROJET_SYNTHESE.'</a></li>';
|
73 |
$GLOBALS['url']->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_DESCRIPTION);
|
73 |
$GLOBALS['url']->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_DESCRIPTION);
|
74 |
$res .= '<li class="'.cma(PROJET_ACTION_VOIR_DESCRIPTION).'"><a href="'.$GLOBALS['url']->getURL().'">'.PROJET_DESCRIPTION.'</a></li>';
|
74 |
$res .= '<li class="'.cma(PROJET_ACTION_VOIR_DESCRIPTION).'"><a href="'.$GLOBALS['url']->getURL().'">'.PROJET_DESCRIPTION.'</a></li>';
|
75 |
$GLOBALS['url']->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_WIKINI);
|
75 |
$GLOBALS['url']->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_WIKINI);
|
76 |
$res .= '<li class="'.cma(PROJET_ACTION_VOIR_WIKINI).'"><a href="'.$GLOBALS['url']->getURL().'">'.PROJET_WIKINI.'</a></li>';
|
76 |
$res .= '<li class="'.cma(PROJET_ACTION_VOIR_WIKINI).'"><a href="'.$GLOBALS['url']->getURL().'">'.PROJET_WIKINI.'</a></li>';
|
77 |
$GLOBALS['url']->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_DOCUMENT) ;
|
77 |
$GLOBALS['url']->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_DOCUMENT) ;
|
78 |
$res .= '<li class="'.cma(PROJET_ACTION_VOIR_DOCUMENT).'"><a href="'.$GLOBALS['url']->getURL().'">Documents</a></li>';
|
78 |
$res .= '<li class="'.cma(PROJET_ACTION_VOIR_DOCUMENT).'"><a href="'.$GLOBALS['url']->getURL().'">Documents</a></li>';
|
79 |
$GLOBALS['url']->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_FORUM) ;
|
79 |
$GLOBALS['url']->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_FORUM) ;
|
80 |
$res .= '<li class="'.cma(PROJET_ACTION_VOIR_FORUM).'"><a href="'.$GLOBALS['url']->getURL().'">Forum</a></li>';
|
80 |
$res .= '<li class="'.cma(PROJET_ACTION_VOIR_FORUM).'"><a href="'.$GLOBALS['url']->getURL().'">Forum</a></li>';
|
81 |
$GLOBALS['url']->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_PARTICIPANT) ;
|
81 |
$GLOBALS['url']->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_PARTICIPANT) ;
|
82 |
$res .= '<li class="'.cma(PROJET_ACTION_VOIR_PARTICIPANT).'"><a href="'.$GLOBALS['url']->getURL().'">Participants</a></li>';
|
82 |
$res .= '<li class="'.cma(PROJET_ACTION_VOIR_PARTICIPANT).'"><a href="'.$GLOBALS['url']->getURL().'">Participants</a></li>';
|
83 |
$res .= '</ul>';
|
83 |
$res .= '</ul>';
|
84 |
$GLOBALS['url']->removeQueryString (PROJET_VARIABLE_ACTION) ;
|
84 |
$GLOBALS['url']->removeQueryString (PROJET_VARIABLE_ACTION) ;
|
85 |
}
|
85 |
}
|
86 |
return $res ;
|
86 |
return $res ;
|
87 |
}
|
87 |
}
|
88 |
}
|
88 |
}
|
89 |
|
89 |
|
90 |
function afficherContenuMenu()
|
90 |
function afficherContenuMenu()
|
91 |
{
|
91 |
{
|
92 |
$sortie = '';
|
92 |
$sortie = '';
|
93 |
// on fait de même pour id_projet
|
93 |
// on fait de même pour id_projet
|
94 |
$id_projet = isset($_REQUEST[PROJET_VARIABLE_ID_PROJET]) ? $_REQUEST[PROJET_VARIABLE_ID_PROJET] : '';
|
94 |
$id_projet = isset($_REQUEST[PROJET_VARIABLE_ID_PROJET]) ? $_REQUEST[PROJET_VARIABLE_ID_PROJET] : '';
|
95 |
|
95 |
|
96 |
// On recherche une action dans la variable $action, s'il n'y a pas, on envoie defaut
|
96 |
// On recherche une action dans la variable $action, s'il n'y a pas, on envoie defaut
|
97 |
$action = isset($_REQUEST[PROJET_VARIABLE_ACTION]) ? $_REQUEST[PROJET_VARIABLE_ACTION] : PROJET_DEFAUT;
|
97 |
$action = isset($_REQUEST[PROJET_VARIABLE_ACTION]) ? $_REQUEST[PROJET_VARIABLE_ACTION] : PROJET_DEFAUT;
|
98 |
|
98 |
|
99 |
// et pour id_repertoire
|
99 |
// et pour id_repertoire
|
100 |
$id_repertoire = isset($_REQUEST['id_repertoire']) ? $_REQUEST['id_repertoire'] : '';
|
100 |
$id_repertoire = isset($_REQUEST['id_repertoire']) ? $_REQUEST['id_repertoire'] : '';
|
101 |
|
101 |
|
102 |
$controleur = new projetControleur($GLOBALS['projet_db'], $GLOBALS['projet_auth'], $GLOBALS['url']) ;
|
102 |
$controleur = new projetControleur($GLOBALS['projet_db'], $GLOBALS['projet_auth'], $GLOBALS['url']) ;
|
103 |
|
103 |
|
104 |
if ($id_projet != '' && projet::projetExiste($GLOBALS['projet_db'], $id_projet)) {
|
104 |
if ($id_projet != '' && projet::projetExiste($GLOBALS['projet_db'], $id_projet)) {
|
105 |
$controleur->setIdProjet($id_projet) ;
|
105 |
$controleur->setIdProjet($id_projet) ;
|
106 |
}
|
106 |
}
|
107 |
if ($id_repertoire != "") {
|
107 |
if ($id_repertoire != "") {
|
108 |
$controleur->setIdRepertoire($id_repertoire) ;
|
108 |
$controleur->setIdRepertoire($id_repertoire) ;
|
109 |
}
|
109 |
}
|
110 |
|
110 |
|
111 |
// Dans le cas de la présentation par arbre, on met les menus
|
111 |
// Dans le cas de la présentation par arbre, on met les menus
|
112 |
if (isset($GLOBALS['_GEN_commun']['info_application']->presentation) && $GLOBALS['_GEN_commun']['info_application']->presentation == 'arbre') {
|
112 |
if (isset($GLOBALS['_GEN_commun']['info_application']->presentation) && (($GLOBALS['_GEN_commun']['info_application']->presentation == 'arbre') || ($GLOBALS['_GEN_commun']['info_application']->presentation == 'liste'))){
|
113 |
$sortie .= $controleur->menuGeneral() ;
|
113 |
$sortie .= $controleur->menuGeneral() ;
|
114 |
}
|
114 |
}
|
115 |
return $sortie;
|
115 |
return $sortie;
|
116 |
}
|
116 |
}
|
117 |
|
117 |
|
118 |
function afficherContenuCorps() {
|
118 |
function afficherContenuCorps() {
|
119 |
|
119 |
|
120 |
// On recherche une action dans la variable $action, s'il n'y a pas, on envoie defaut
|
120 |
// On recherche une action dans la variable $action, s'il n'y a pas, on envoie defaut
|
121 |
$action = isset($_REQUEST[PROJET_VARIABLE_ACTION]) ? $_REQUEST[PROJET_VARIABLE_ACTION] : PROJET_DEFAUT;
|
121 |
$action = isset($_REQUEST[PROJET_VARIABLE_ACTION]) ? $_REQUEST[PROJET_VARIABLE_ACTION] : PROJET_DEFAUT;
|
122 |
|
122 |
|
123 |
// on fait de même pour id_projet
|
123 |
// on fait de même pour id_projet
|
124 |
$id_projet = isset($_REQUEST[PROJET_VARIABLE_ID_PROJET]) ? $_REQUEST[PROJET_VARIABLE_ID_PROJET] : '';
|
124 |
$id_projet = isset($_REQUEST[PROJET_VARIABLE_ID_PROJET]) ? $_REQUEST[PROJET_VARIABLE_ID_PROJET] : '';
|
125 |
|
125 |
|
126 |
// et pour id_repertoire
|
126 |
// et pour id_repertoire
|
127 |
$id_repertoire = isset($_REQUEST['id_repertoire']) ? $_REQUEST['id_repertoire'] : '';
|
127 |
$id_repertoire = isset($_REQUEST['id_repertoire']) ? $_REQUEST['id_repertoire'] : '';
|
128 |
|
128 |
|
129 |
// et pour id_document
|
129 |
// et pour id_document
|
130 |
$id_document = isset($_REQUEST['id_document']) ? $_REQUEST['id_document'] : '';
|
130 |
$id_document = isset($_REQUEST['id_document']) ? $_REQUEST['id_document'] : '';
|
131 |
|
131 |
|
132 |
// On construit le controleur en lui passant en paramètre l'identifiant de connexion à la BD
|
132 |
// On construit le controleur en lui passant en paramètre l'identifiant de connexion à la BD
|
133 |
// l'objet d'authentification et l'url de la page
|
133 |
// l'objet d'authentification et l'url de la page
|
134 |
|
134 |
|
135 |
$controleur = new projetControleur(&$GLOBALS['projet_db'], &$GLOBALS['projet_auth'], &$GLOBALS['url']) ;
|
135 |
$controleur = new projetControleur(&$GLOBALS['projet_db'], &$GLOBALS['projet_auth'], &$GLOBALS['url']) ;
|
136 |
$controleur->setAction ($action) ;
|
136 |
$controleur->setAction ($action) ;
|
137 |
|
137 |
|
138 |
// On indique au controleur sur quel projet on travaille
|
138 |
// On indique au controleur sur quel projet on travaille
|
139 |
|
139 |
|
140 |
if ($id_projet != "") {
|
140 |
if ($id_projet != "") {
|
141 |
$controleur->setIdProjet($id_projet) ;
|
141 |
$controleur->setIdProjet($id_projet) ;
|
142 |
|
142 |
|
143 |
}
|
143 |
}
|
144 |
if ($id_repertoire != "") {
|
144 |
if ($id_repertoire != "") {
|
145 |
$controleur->setIdRepertoire($id_repertoire) ;
|
145 |
$controleur->setIdRepertoire($id_repertoire) ;
|
146 |
}
|
146 |
}
|
147 |
if ($id_document != "") {
|
147 |
if ($id_document != "") {
|
148 |
$controleur->setIdDocument($id_document) ;
|
148 |
$controleur->setIdDocument($id_document) ;
|
149 |
}
|
149 |
}
|
150 |
|
150 |
|
151 |
// récupération des paramètres de l'appli
|
151 |
// récupération des paramètres de l'appli
|
152 |
if (isset($GLOBALS['_GEN_commun']['info_application']->presentation)) {
|
152 |
if (isset($GLOBALS['_GEN_commun']['info_application']->presentation)) {
|
153 |
$controleur->setPresentation($GLOBALS['_GEN_commun']['info_application']->presentation) ;
|
153 |
$controleur->setPresentation($GLOBALS['_GEN_commun']['info_application']->presentation) ;
|
154 |
}
|
154 |
}
|
155 |
|
155 |
|
156 |
$res = $controleur->run() ;
|
156 |
$res = $controleur->run() ;
|
157 |
$GLOBALS['chrono_flash']['apres_doc'] = microtime() ;
|
157 |
$GLOBALS['chrono_flash']['apres_doc'] = microtime() ;
|
158 |
return $res ;
|
158 |
return $res ;
|
159 |
}
|
159 |
}
|
160 |
|
160 |
|
161 |
/** cma() calcule menu actif
|
161 |
/** cma() calcule menu actif
|
162 |
*
|
162 |
*
|
163 |
*
|
163 |
*
|
164 |
* @return
|
164 |
* @return
|
165 |
*/
|
165 |
*/
|
166 |
|
166 |
|
167 |
function cma ($var) {
|
167 |
function cma ($var) {
|
168 |
$class = $_REQUEST[PROJET_VARIABLE_ACTION] == $var ? 'menu_actif' : 'menu_inactif' ;
|
168 |
$class = $_REQUEST[PROJET_VARIABLE_ACTION] == $var ? 'menu_actif' : 'menu_inactif' ;
|
169 |
return $class ;
|
169 |
return $class ;
|
170 |
}
|
170 |
}
|
171 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
171 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
172 |
*
|
172 |
*
|
173 |
* $Log: not supported by cvs2svn $
|
173 |
* $Log: not supported by cvs2svn $
|
- |
|
174 |
* Revision 1.1 2005/09/22 14:02:48 ddelon
|
- |
|
175 |
* nettoyage annuaire et php5
|
- |
|
176 |
*
|
174 |
*
|
177 |
*
|
175 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
178 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
176 |
*/
|
179 |
*/
|
177 |
|
180 |
|
178 |
|
181 |
|
179 |
?>
|
182 |
?>
|