Subversion Repositories Applications.projet

Rev

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

Rev Author Line No. Line
2 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 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
// | General Public License for more details.                                                             |
17
// |                                                                                                      |
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                                  |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
21
// +------------------------------------------------------------------------------------------------------+
55 alexandre_ 22
// CVS : $Id: projet.php,v 1.8 2005-10-25 13:50:13 alexandre_tb Exp $
2 ddelon 23
/**
24
* Application projet
25
*
26
* Fichier d'appel pour papyrus
27
*
28
*@package projet
29
//Auteur original :
30
*@author        Alexandre Granier <alexandre@tela-botanica.org>
31
//Autres auteurs :
32
*@author        Aucun
33
*@copyright     Tela-Botanica 2000-2004
55 alexandre_ 34
*@version       $Revision: 1.8 $
2 ddelon 35
// +------------------------------------------------------------------------------------------------------+
36
*/
37
 
38
// +------------------------------------------------------------------------------------------------------+
39
// |                                            ENTETE du PROGRAMME                                       |
40
// +------------------------------------------------------------------------------------------------------+
41
 
42
include_once 'configuration/projet.config.inc.php' ;
43
include_once PROJET_CHEMIN_CLASSES.'projetControleur.class.php' ;
44
 
45
// Inclusion des styles selon papyrus
46
if (function_exists("GEN_stockerStyleExterne")) {
47
    GEN_stockerStyleExterne('projet','client/projet/projet.css') ;
48
    GEN_stockerStyleExterne('projet_arbre','client/projet/arbre.css') ;
49
}
50
 
51
// +------------------------------------------------------------------------------------------------------+
52
// |                                           LISTE des constantes                                       |
53
// +------------------------------------------------------------------------------------------------------+
54
 
55
define ("PROJET_DEFAUT", 1) ;
56
define ("PROJET_VOIR", 2) ;
57
define ('PROJET_MENU_AFFICHER_CONTENU_CORPS', 1) ;
58
// +------------------------------------------------------------------------------------------------------+
59
// |                                           LISTE de FONCTIONS                                         |
60
// +------------------------------------------------------------------------------------------------------+
61
 
62
if (isset($_REQUEST[PROJET_VARIABLE_ID_PROJET])) {
63
    function afficherContenuNavigation () {
64
        $GLOBALS['url']->addQueryString(PROJET_VARIABLE_ID_PROJET, $_REQUEST[PROJET_VARIABLE_ID_PROJET]) ;
65
        if (empty($_REQUEST[PROJET_VARIABLE_ACTION])) {
66
            $_REQUEST[PROJET_VARIABLE_ACTION] = PROJET_ACTION_VOIR_RESUME ;
67
        }
68
        $res = '' ;
55 alexandre_ 69
        if (isset($GLOBALS['_GEN_commun']['info_application']->presentation) &&
70
        			(($GLOBALS['_GEN_commun']['info_application']->presentation == 'arbre')
71
        			||($GLOBALS['_GEN_commun']['info_application']->presentation == 'liste'))) {
2 ddelon 72
            $res .= '<ul class="onglets">';
73
            $GLOBALS['url']->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_RESUME);
74
            $res .= '<li class="'.cma(PROJET_ACTION_VOIR_RESUME).'"><a href="'.$GLOBALS['url']->getURL().'">'.PROJET_SYNTHESE.'</a></li>';
75
            $GLOBALS['url']->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_DESCRIPTION);
76
            $res .= '<li class="'.cma(PROJET_ACTION_VOIR_DESCRIPTION).'"><a href="'.$GLOBALS['url']->getURL().'">'.PROJET_DESCRIPTION.'</a></li>';
77
            $GLOBALS['url']->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_WIKINI);
78
            $res .= '<li class="'.cma(PROJET_ACTION_VOIR_WIKINI).'"><a href="'.$GLOBALS['url']->getURL().'">'.PROJET_WIKINI.'</a></li>';
79
            $GLOBALS['url']->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_DOCUMENT) ;
80
            $res .= '<li class="'.cma(PROJET_ACTION_VOIR_DOCUMENT).'"><a href="'.$GLOBALS['url']->getURL().'">Documents</a></li>';
81
            $GLOBALS['url']->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_FORUM) ;
82
            $res .= '<li class="'.cma(PROJET_ACTION_VOIR_FORUM).'"><a href="'.$GLOBALS['url']->getURL().'">Forum</a></li>';
83
            $GLOBALS['url']->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_PARTICIPANT) ;
84
            $res .= '<li class="'.cma(PROJET_ACTION_VOIR_PARTICIPANT).'"><a href="'.$GLOBALS['url']->getURL().'">Participants</a></li>';
85
            $res .= '</ul>';
86
            $GLOBALS['url']->removeQueryString (PROJET_VARIABLE_ACTION) ;
87
        }
19 alexandre_ 88
        if (isset ($GLOBALS['_GEN_commun']['info_application']->seulement_forum)) {
45 alexandre_ 89
        	$res = '' ;
19 alexandre_ 90
    	}
2 ddelon 91
        return $res ;
92
    }
93
}
94
 
95
function afficherContenuMenu()
96
{
97
    $sortie  = '';
98
    // on fait de même pour id_projet
99
    $id_projet = isset($_REQUEST[PROJET_VARIABLE_ID_PROJET]) ? $_REQUEST[PROJET_VARIABLE_ID_PROJET] :  '';
100
 
101
       // On recherche une action dans la variable $action, s'il n'y a pas, on envoie defaut
102
    $action = isset($_REQUEST[PROJET_VARIABLE_ACTION]) ? $_REQUEST[PROJET_VARIABLE_ACTION] : PROJET_DEFAUT;
103
 
104
    // et pour id_repertoire
105
    $id_repertoire = isset($_REQUEST['id_repertoire']) ? $_REQUEST['id_repertoire'] : '';
106
 
107
    $controleur = new projetControleur($GLOBALS['projet_db'], $GLOBALS['projet_auth'], $GLOBALS['url']) ;
108
 
109
    if ($id_projet != '' && projet::projetExiste($GLOBALS['projet_db'], $id_projet)) {
110
        $controleur->setIdProjet($id_projet) ;
111
    }
112
    if ($id_repertoire != "") {
113
        $controleur->setIdRepertoire($id_repertoire) ;
114
    }
55 alexandre_ 115
    if (isset ($GLOBALS['_GEN_commun']['info_application']->prive)) {
116
        $controleur->setPrive() ;
117
    }
2 ddelon 118
 
119
    // Dans le cas de la présentation par arbre, on met les menus
55 alexandre_ 120
    if (isset($GLOBALS['_GEN_commun']['info_application']->presentation) &&
121
    				(($GLOBALS['_GEN_commun']['info_application']->presentation == 'arbre') ||
122
    				($GLOBALS['_GEN_commun']['info_application']->presentation == 'liste'))){
2 ddelon 123
        $sortie .= $controleur->menuGeneral() ;
124
    }
29 alexandre_ 125
 
126
    // Dans le cas d'un forum simple, on ne met pas les menus
127
    if (isset ($GLOBALS['_GEN_commun']['info_application']->seulement_forum)) {
128
        	return ;
129
    }
2 ddelon 130
    return $sortie;
131
}
132
 
133
function afficherContenuCorps() {
134
 
10 alexandre_ 135
 
2 ddelon 136
    // On recherche une action dans la variable $action, s'il n'y a pas, on envoie defaut
137
    $action = isset($_REQUEST[PROJET_VARIABLE_ACTION]) ? $_REQUEST[PROJET_VARIABLE_ACTION] : PROJET_DEFAUT;
138
 
139
    // on fait de même pour id_projet
140
    $id_projet = isset($_REQUEST[PROJET_VARIABLE_ID_PROJET]) ? $_REQUEST[PROJET_VARIABLE_ID_PROJET] : '';
141
 
142
    // et pour id_repertoire
143
    $id_repertoire = isset($_REQUEST['id_repertoire']) ? $_REQUEST['id_repertoire'] : '';
144
 
145
    // et pour id_document
146
    $id_document = isset($_REQUEST['id_document']) ? $_REQUEST['id_document'] : '';
147
 
148
    // On construit le controleur en lui passant en paramètre l'identifiant de connexion à la BD
149
    // l'objet d'authentification et l'url de la page
150
 
151
    $controleur = new projetControleur(&$GLOBALS['projet_db'], &$GLOBALS['projet_auth'], &$GLOBALS['url']) ;
152
    $controleur->setAction ($action) ;
153
 
154
    // On indique au controleur sur quel projet on travaille
155
 
156
    if ($id_projet != "") {
157
        $controleur->setIdProjet($id_projet) ;
158
 
159
    }
160
    if ($id_repertoire != "") {
161
        $controleur->setIdRepertoire($id_repertoire) ;
162
    }
163
    if ($id_document != "") {
164
        $controleur->setIdDocument($id_document) ;
165
    }
166
 
167
    // récupération des paramètres de l'appli
168
    if (isset($GLOBALS['_GEN_commun']['info_application']->presentation)) {
169
        $controleur->setPresentation($GLOBALS['_GEN_commun']['info_application']->presentation) ;
170
    }
10 alexandre_ 171
    if (isset($GLOBALS['_GEN_commun']['info_application']->projet_type)) {
172
        $controleur->setType($GLOBALS['_GEN_commun']['info_application']->projet_type) ;
173
    }
174
    if (isset ($GLOBALS['_GEN_commun']['info_application']->exclure)) {
29 alexandre_ 175
    	$a_exclure = explode (',', $GLOBALS['_GEN_commun']['info_application']->exclure) ;
176
        foreach ($a_exclure as $valeur) $controleur->exclure($valeur) ;
10 alexandre_ 177
    }
19 alexandre_ 178
    if (isset ($GLOBALS['_GEN_commun']['info_application']->seulement_forum)) {
179
        $controleur->setIdProjet($GLOBALS['_GEN_commun']['info_application']->seulement_forum) ;
45 alexandre_ 180
        // S'il n'y a pas d'action en mode forum, on affiche l'onglet Forum
55 alexandre_ 181
        echo $_REQUEST[PROJET_VARIABLE_ACTION];
45 alexandre_ 182
        if (!isset($_REQUEST[PROJET_VARIABLE_ACTION])) $controleur->setAction (PROJET_ACTION_VOIR_FORUM) ;
19 alexandre_ 183
    }
55 alexandre_ 184
 
185
    if (isset ($GLOBALS['_GEN_commun']['info_application']->seulement)) {
186
        $controleur->setIdProjet($GLOBALS['_GEN_commun']['info_application']->seulement) ;
187
    }
188
 
189
    // Si le parametre prive est passé, les inscriptions sont modérés
190
    // TODO : permettre la demande d'inscription
191
    if (isset ($GLOBALS['_GEN_commun']['info_application']->prive)) {
192
        $controleur->setPrive() ;
193
    }
2 ddelon 194
    $res = $controleur->run() ;
19 alexandre_ 195
 
2 ddelon 196
    return $res ;
197
}
198
 
199
/** cma() calcule menu actif
200
 *
201
 *
202
 * @return
203
 */
204
 
205
function cma ($var) {
206
    $class = $_REQUEST[PROJET_VARIABLE_ACTION] == $var ?  'menu_actif' :  'menu_inactif' ;
207
    return $class ;
208
}
209
/* +--Fin du code ----------------------------------------------------------------------------------------+
210
*
211
* $Log: not supported by cvs2svn $
55 alexandre_ 212
* Revision 1.7  2005/10/17 16:22:28  alexandre_tb
213
* rien
214
*
45 alexandre_ 215
* Revision 1.6  2005/10/06 14:54:06  alexandre_tb
216
* ajout de la gestion du paramètre seulement_forum
217
*
29 alexandre_ 218
* Revision 1.5  2005/10/04 10:06:32  alexandre_tb
219
* ajout du parametre seulement_forum
220
*
19 alexandre_ 221
* Revision 1.4  2005/09/28 16:29:39  ddelon
222
* Merge modification projet
223
*
15 ddelon 224
* Revision 1.3  2005/09/27 16:31:06  alexandre_tb
225
* ??
2 ddelon 226
*
15 ddelon 227
*
2 ddelon 228
* +-- Fin du code ----------------------------------------------------------------------------------------+
229
*/
230
 
231
 
232
?>