Subversion Repositories Applications.projet

Rev

Rev 15 | Rev 29 | 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
// +------------------------------------------------------------------------------------------------------+
19 alexandre_ 22
// CVS : $Id: projet.php,v 1.5 2005-10-04 10:06:32 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
19 alexandre_ 34
*@version       $Revision: 1.5 $
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 = '' ;
15 ddelon 69
        if (isset($GLOBALS['_GEN_commun']['info_application']->presentation) && (($GLOBALS['_GEN_commun']['info_application']->presentation == 'arbre')||($GLOBALS['_GEN_commun']['info_application']->presentation == 'liste'))) {
2 ddelon 70
            $res .= '<ul class="onglets">';
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>';
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>';
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>';
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>';
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>';
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>';
83
            $res .= '</ul>';
84
            $GLOBALS['url']->removeQueryString (PROJET_VARIABLE_ACTION) ;
85
        }
19 alexandre_ 86
        if (isset ($GLOBALS['_GEN_commun']['info_application']->seulement_forum)) {
87
        	return ;
88
    	}
2 ddelon 89
        return $res ;
90
    }
91
}
92
 
93
function afficherContenuMenu()
94
{
95
    $sortie  = '';
96
    // on fait de même pour id_projet
97
    $id_projet = isset($_REQUEST[PROJET_VARIABLE_ID_PROJET]) ? $_REQUEST[PROJET_VARIABLE_ID_PROJET] :  '';
98
 
99
       // On recherche une action dans la variable $action, s'il n'y a pas, on envoie defaut
100
    $action = isset($_REQUEST[PROJET_VARIABLE_ACTION]) ? $_REQUEST[PROJET_VARIABLE_ACTION] : PROJET_DEFAUT;
101
 
102
    // et pour id_repertoire
103
    $id_repertoire = isset($_REQUEST['id_repertoire']) ? $_REQUEST['id_repertoire'] : '';
104
 
105
    $controleur = new projetControleur($GLOBALS['projet_db'], $GLOBALS['projet_auth'], $GLOBALS['url']) ;
106
 
107
    if ($id_projet != '' && projet::projetExiste($GLOBALS['projet_db'], $id_projet)) {
108
        $controleur->setIdProjet($id_projet) ;
109
    }
110
    if ($id_repertoire != "") {
111
        $controleur->setIdRepertoire($id_repertoire) ;
112
    }
113
 
114
    // Dans le cas de la présentation par arbre, on met les menus
15 ddelon 115
    if (isset($GLOBALS['_GEN_commun']['info_application']->presentation) && (($GLOBALS['_GEN_commun']['info_application']->presentation == 'arbre') || ($GLOBALS['_GEN_commun']['info_application']->presentation == 'liste'))){
2 ddelon 116
        $sortie .= $controleur->menuGeneral() ;
117
    }
118
    return $sortie;
119
}
120
 
121
function afficherContenuCorps() {
122
 
10 alexandre_ 123
 
2 ddelon 124
    // On recherche une action dans la variable $action, s'il n'y a pas, on envoie defaut
125
    $action = isset($_REQUEST[PROJET_VARIABLE_ACTION]) ? $_REQUEST[PROJET_VARIABLE_ACTION] : PROJET_DEFAUT;
126
 
127
    // on fait de même pour id_projet
128
    $id_projet = isset($_REQUEST[PROJET_VARIABLE_ID_PROJET]) ? $_REQUEST[PROJET_VARIABLE_ID_PROJET] : '';
129
 
130
    // et pour id_repertoire
131
    $id_repertoire = isset($_REQUEST['id_repertoire']) ? $_REQUEST['id_repertoire'] : '';
132
 
133
    // et pour id_document
134
    $id_document = isset($_REQUEST['id_document']) ? $_REQUEST['id_document'] : '';
135
 
136
    // On construit le controleur en lui passant en paramètre l'identifiant de connexion à la BD
137
    // l'objet d'authentification et l'url de la page
138
 
139
    $controleur = new projetControleur(&$GLOBALS['projet_db'], &$GLOBALS['projet_auth'], &$GLOBALS['url']) ;
140
    $controleur->setAction ($action) ;
141
 
142
    // On indique au controleur sur quel projet on travaille
143
 
144
    if ($id_projet != "") {
145
        $controleur->setIdProjet($id_projet) ;
146
 
147
    }
148
    if ($id_repertoire != "") {
149
        $controleur->setIdRepertoire($id_repertoire) ;
150
    }
151
    if ($id_document != "") {
152
        $controleur->setIdDocument($id_document) ;
153
    }
154
 
155
    // récupération des paramètres de l'appli
156
    if (isset($GLOBALS['_GEN_commun']['info_application']->presentation)) {
157
        $controleur->setPresentation($GLOBALS['_GEN_commun']['info_application']->presentation) ;
158
    }
10 alexandre_ 159
    if (isset($GLOBALS['_GEN_commun']['info_application']->projet_type)) {
160
        $controleur->setType($GLOBALS['_GEN_commun']['info_application']->projet_type) ;
161
    }
162
    if (isset ($GLOBALS['_GEN_commun']['info_application']->exclure)) {
163
        $controleur->exclure($GLOBALS['_GEN_commun']['info_application']->exclure) ;
164
    }
19 alexandre_ 165
    if (isset ($GLOBALS['_GEN_commun']['info_application']->seulement_forum)) {
166
        $controleur->setIdProjet($GLOBALS['_GEN_commun']['info_application']->seulement_forum) ;
167
        $controleur->setAction (PROJET_ACTION_VOIR_FORUM) ;
168
    }
2 ddelon 169
    $res = $controleur->run() ;
19 alexandre_ 170
 
2 ddelon 171
    return $res ;
172
}
173
 
174
/** cma() calcule menu actif
175
 *
176
 *
177
 * @return
178
 */
179
 
180
function cma ($var) {
181
    $class = $_REQUEST[PROJET_VARIABLE_ACTION] == $var ?  'menu_actif' :  'menu_inactif' ;
182
    return $class ;
183
}
184
/* +--Fin du code ----------------------------------------------------------------------------------------+
185
*
186
* $Log: not supported by cvs2svn $
19 alexandre_ 187
* Revision 1.4  2005/09/28 16:29:39  ddelon
188
* Merge modification projet
189
*
15 ddelon 190
* Revision 1.3  2005/09/27 16:31:06  alexandre_tb
191
* ??
2 ddelon 192
*
15 ddelon 193
*
2 ddelon 194
* +-- Fin du code ----------------------------------------------------------------------------------------+
195
*/
196
 
197
 
198
?>