Subversion Repositories Applications.projet

Rev

Rev 249 | Rev 431 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 249 Rev 303
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: HTML_listeDocuments.class.php,v 1.9 2007-06-25 12:15:06 alexandre_tb Exp $
22
// CVS : $Id: HTML_listeDocuments.class.php,v 1.10 2008-08-25 15:14:17 alexandre_tb Exp $
23
/**
23
/**
24
* Application projet
24
* Application projet
25
*
25
*
26
* La classe HTML_listeDocuments
26
* La classe HTML_listeDocuments
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.9 $
34
*@version       $Revision: 1.10 $
35
// +------------------------------------------------------------------------------------------------------+
35
// +------------------------------------------------------------------------------------------------------+
36
*/
36
*/
37
 
37
 
38
 
38
 
39
// +------------------------------------------------------------------------------------------------------+
39
// +------------------------------------------------------------------------------------------------------+
40
// |                                            ENTETE du PROGRAMME                                       |
40
// |                                            ENTETE du PROGRAMME                                       |
41
// +------------------------------------------------------------------------------------------------------+
41
// +------------------------------------------------------------------------------------------------------+
42
 
42
 
43
 
43
 
44
// +------------------------------------------------------------------------------------------------------+
44
// +------------------------------------------------------------------------------------------------------+
45
// |                                           LISTE des constantes                                       |
45
// |                                           LISTE des constantes                                       |
46
// +------------------------------------------------------------------------------------------------------+
46
// +------------------------------------------------------------------------------------------------------+
47
 
47
 
48
define ("FICHIER_ICONE_COUPER", "cut.gif") ;
48
define ("FICHIER_ICONE_COUPER", "cut.gif") ;
49
define ("FICHIER_ICONE_COLLER", "paste.gif") ;
49
define ("FICHIER_ICONE_COLLER", "paste.gif") ;
50
define ("FICHIER_ICONE_SUPPRIMER", "trash.gif") ;
50
define ("FICHIER_ICONE_SUPPRIMER", "trash.gif") ;
51
define ("FICHIER_ICONE_MODIFIER", "modif.png") ;
51
define ("FICHIER_ICONE_MODIFIER", "modif.png") ;
52
 
52
 
53
 
53
 
54
include_once PROJET_CHEMIN_CLASSES.'HTML_Liste.class.php';
54
include_once PROJET_CHEMIN_CLASSES.'HTML_Liste.class.php';
55
/**
55
/**
56
 * class HTML_listeDocuments
56
 * class HTML_listeDocuments
57
 * 
57
 * 
58
 */
58
 */
59
class HTML_listeDocuments extends HTML_Liste
59
class HTML_listeDocuments extends HTML_Liste
60
{
60
{
61
    /*** Attributes: ***/
61
    /*** Attributes: ***/
62
 
62
 
63
    /**
63
    /**
64
     * Une url.
64
     * Une url.
65
     * @access private
65
     * @access private
66
     */
66
     */
67
    var $_url;
67
    var $_url;
68
    
68
    
69
    /**
69
    /**
70
     * Tableau contenant les actions possibles. "couper" => 1, "modifier" => 2,
70
     * Tableau contenant les actions possibles. "couper" => 1, "modifier" => 2,
71
     * "supprimer" => 3 Elles seront passées en paramètre aux url des icones des
71
     * "supprimer" => 3 Elles seront passées en paramètre aux url des icones des
72
     * documents.
72
     * documents.
73
     * @access private
73
     * @access private
74
     */
74
     */
75
    var $_actions = array ("couper" => 1, "modifier" => 2, "supprimer" => 3) ;
75
    var $_actions = array ("couper" => 1, "modifier" => 2, "supprimer" => 3) ;
76
 
76
 
77
    /**
77
    /**
78
     * Indique le chemin des icones couper, coller, modifier, supprimer. 
78
     * Indique le chemin des icones couper, coller, modifier, supprimer. 
79
     * @access private
79
     * @access private
80
     */
80
     */
81
    var $_chemin_icone = "icones/";
81
    var $_chemin_icone = "icones/";
82
    
82
    
83
    /**
83
    /**
84
     * L'identifiant du repertoire que l'on est en train d'observer.
84
     * L'identifiant du repertoire que l'on est en train d'observer.
85
     * @access private
85
     * @access private
86
     */
86
     */
87
    var $_id_repertoire;
87
    var $_id_repertoire;
88
 
88
 
89
    /**
89
    /**
90
     * Un tableau contenant les id et les noms du chemin des répertoires. 0 => ["id"],
90
     * Un tableau contenant les id et les noms du chemin des répertoires. 0 => ["id"],
91
     * ["nom"] etc.
91
     * ["nom"] etc.
92
     * @access private
92
     * @access private
93
     */
93
     */
94
    var $_chemin_navigation = array ();
94
    var $_chemin_navigation = array ();
95
 
95
 
96
    /**
96
    /**
97
     * un pointeur vers une authentificatin PEAR
97
     * un pointeur vers une authentificatin PEAR
98
     * @access private
98
     * @access private
99
     */
99
     */
100
    var $_auth ;
100
    var $_auth ;
101
    
101
    
102
    /**
102
    /**
103
     * le style d affichage
103
     * le style d affichage
104
     * @access private
104
     * @access private
105
     */
105
     */
106
    var $_mode_affichage ;
106
    var $_mode_affichage ;
107
    /**
107
    /**
108
     * 
108
     * 
109
     *
109
     *
110
     * @param bool utilise_pager Indique l'utilisation ou non du Pager.
110
     * @param bool utilise_pager Indique l'utilisation ou non du Pager.
111
     * @return void
111
     * @return void
112
     * @access public
112
     * @access public
113
     */
113
     */
114
    function HTML_listeDocuments(&$url,  $utilise_pager = false, $id_repertoire = 0, $auth = '' )
114
    function HTML_listeDocuments(&$url,  $utilise_pager = false, $id_repertoire = 0, $auth = '' )
115
    {
115
    {
116
        HTML_Liste::HTML_Liste($utilise_pager, array('class' => 'table_cadre')) ;
116
        HTML_Liste::HTML_Liste($utilise_pager, array('class' => 'table_cadre')) ;
117
        $this->_url = $url ;
117
        $this->_url = $url ;
118
        
118
        
119
        $this->_id_repertoire = $id_repertoire ;
119
        $this->_id_repertoire = $id_repertoire ;
120
        if (is_object($auth)) {
120
        if (is_object($auth)) {
121
            $this->_auth = $auth ;
121
            $this->_auth = $auth ;
122
        }
122
        }
123
        $this->_mode_affichage = 'standart';
123
        $this->_mode_affichage = 'standart';
124
    } // end of member function HTML_listeDocuments
124
    } // end of member function HTML_listeDocuments
125
 
125
 
126
    /**
126
    /**
127
     * 
127
     * 
128
     *
128
     *
129
     * @param bool utilise_pager Voir HTML_listeDocuments
129
     * @param bool utilise_pager Voir HTML_listeDocuments
130
     * @return void
130
     * @return void
131
     * @access public
131
     * @access public
132
     */
132
     */
133
    function __construct( &$url,  $utilise_pager = false, $id_repertoire = 0, $auth = '', $id_projet = '' )
133
    function __construct( &$url,  $utilise_pager = false, $id_repertoire = 0, $auth = '', $id_projet = '' )
134
    {
134
    {
135
        $this->HTML_listeDocuments($url,  $utilise_pager, $id_repertoire, $auth);
135
        $this->HTML_listeDocuments($url,  $utilise_pager, $id_repertoire, $auth);
136
        
136
        
137
    } // end of member function __construct
137
    } // end of member function __construct
138
 
138
 
139
    /**
139
    /**
140
     * 
140
     * 
141
     *
141
     *
142
     * @param Array tableau_label Un tableau contenant les labels à afficher dans l'entête.
142
     * @param Array tableau_label Un tableau contenant les labels à afficher dans l'entête.
143
     * @return void
143
     * @return void
144
     * @access public
144
     * @access public
145
     */
145
     */
146
    function construitEntete( $tableau_label )
146
    function construitEntete( $tableau_label )
147
    {
147
    {
148
        $this->addRow ($tableau_label, NULL, 'TH') ;
148
        $this->addRow ($tableau_label, NULL, 'TH') ;
149
    }
149
    }
150
 
150
 
151
    /**
151
    /**
152
     * 
152
     * 
153
     *
153
     *
154
     * @param Array tableau_label Un tableau a deux dimensions avec les labels a afficher dans le corps du
154
     * @param Array tableau_label Un tableau a deux dimensions avec les labels a afficher dans le corps du
155
     * tableau.
155
     * tableau.
156
     * @return void
156
     * @return void
157
     * @access public
157
     * @access public
158
     */
158
     */
159
    function construitListe( &$tableau_document, $droits, $mode = '', $objetDB = '', $id_projet = '')
159
    function construitListe( &$tableau_document, $droits, $mode = '', $objetDB = '', $id_projet = '')
160
    {
160
    {
161
        if ($this->_mode_affichage == 'standart') {
161
        if ($this->_mode_affichage == 'standart') {
162
	        $compteur = 0 ;$class[0] = 'ligne_impaire'; $class[1] = 'ligne_paire' ;
162
	        $compteur = 0 ;$class[0] = 'ligne_impaire'; $class[1] = 'ligne_paire' ;
163
	
-
 
-
 
163
	//var_dump ($tableau_document);
164
	        for ($i = 0; $i < count ($tableau_document) ; $i++) {
164
	        for ($i = 0; $i < count ($tableau_document) ; $i++) {
165
	            // Premiere condition : est-ce que le fichier a pour pere le repertoire courant, si oui on l'affiche
165
	            // Premiere condition : est-ce que le fichier a pour pere le repertoire courant, si oui on l'affiche
166
	            if ($tableau_document[$i]->_id_pere == $this->_id_repertoire || $mode == 'ignore_repertoire') {
166
	            if ($tableau_document[$i]->_id_pere == $this->_id_repertoire || $mode == 'ignore_repertoire') {
167
	                // d'abord l'image
167
	                // d'abord l'image
168
	                $icone = '<img src="'.$tableau_document[$i]->getCheminIcone().'" />' ;
168
	                $icone = '<img src="'.$tableau_document[$i]->getCheminIcone().'" />' ;
169
	                // Si le document est un repertoire, on ajoute id_repertoire au lien.
169
	                // Si le document est un repertoire, on ajoute id_repertoire au lien.
-
 
170
	                
-
 
171
	                
170
	                if ($tableau_document[$i]->isRepertoire()) {
172
	                if ($tableau_document[$i]->isRepertoire()) {
171
	                    $this->_url->addQueryString ('id_repertoire', $tableau_document[$i]->getIdDocument()) ;
173
	                    $this->_url->addQueryString ('id_repertoire', $tableau_document[$i]->getIdDocument()) ;
-
 
174
	                    
172
	                    $lien = $this->_url->getURL() ;
175
	                    $lien = $this->_url->getURL() ;
173
	                } else {    //  Si c'est un fichier, on fait un lien direct
176
	                } else {    //  Si c'est un fichier, on fait un lien direct
-
 
177
	                	
174
	                	$this->_url->addQueryString('id_document', $tableau_document[$i]->getIdDocument());
178
	                	$this->_url->addQueryString('id_document', $tableau_document[$i]->getIdDocument());
175
	                	$this->_url->addQueryString('service', 'telechargement');
179
	                	$this->_url->addQueryString('service', 'telechargement');
176
	                    $lien = $this->_url->getURL() ;
180
	                    $lien = $this->_url->getURL() ;
177
	                    $this->_url->removeQueryString('service');
181
	                    $this->_url->removeQueryString('service');
-
 
182
	                    $this->_url->removeQueryString('id_document');
-
 
183
	                    $lien = 'http://'.$this->_url->host.'/projets/'.$this->_url->querystring[PROJET_VARIABLE_ID_PROJET].'/telechargement/'.$tableau_document[$i]->getIdDocument();
178
	                }
184
	                }
179
	                // pour eviter des effets de bords, on enleve id_repertoire de l'url
185
	                // pour eviter des effets de bords, on enleve id_repertoire de l'url
180
	                // dans le cas d'un repertoire, pour les fichiers on le laisse pour
186
	                // dans le cas d'un repertoire, pour les fichiers on le laisse pour
181
	                // qu'apres une operation, on reste dans le repertoire ou a eu lieu l'operation
187
	                // qu'apres une operation, on reste dans le repertoire ou a eu lieu l'operation
182
	                if ($tableau_document[$i]->isRepertoire()) $this->_url->removeQueryString('id_repertoire') ;
188
	                if ($tableau_document[$i]->isRepertoire()) $this->_url->removeQueryString('id_repertoire') ;
183
	                
189
	                
184
	                // on insere le lien
190
	                // on insere le lien
185
	                $lien_nom = '<a href="'.$lien.'">'.$icone.' '.$tableau_document[$i]->getNomLong()."</a>\n" ;
191
	                $lien_nom = '<a href="'.$lien.'">'.$icone.' '.$tableau_document[$i]->getNomLong()."</a>\n" ;
186
	                
192
	                
187
	                $taille = $tableau_document[$i]->getTailleFormatee();
193
	                $taille = $tableau_document[$i]->getTailleFormatee();
188
	                
194
	                
189
	                // Recuperation de l'auteur
195
	                // Recuperation de l'auteur
190
	                include_once PROJET_CHEMIN_CLASSES.'annuaire.class.php' ;
196
	                include_once PROJET_CHEMIN_CLASSES.'annuaire.class.php' ;
191
	                $annuaire = new annuaire($objetDB, array('table' => PROJET_ANNUAIRE, 'identifiant' => PROJET_CHAMPS_ID, 
197
	                $annuaire = new annuaire($objetDB, array('table' => PROJET_ANNUAIRE, 'identifiant' => PROJET_CHAMPS_ID, 
192
	                                            'nom' => PROJET_CHAMPS_NOM, 'prenom' => PROJET_CHAMPS_PRENOM)) ;
198
	                                            'nom' => PROJET_CHAMPS_NOM, 'prenom' => PROJET_CHAMPS_PRENOM)) ;
193
	                $annuaire->setId($tableau_document[$i]->_id_proprietaire) ;
199
	                $annuaire->setId($tableau_document[$i]->_id_proprietaire) ;
194
	                $nom_prenom = $annuaire->getInfo('nom').' '.$annuaire->getInfo('prenom') ;
200
	                $nom_prenom = $annuaire->getInfo('nom').' '.$annuaire->getInfo('prenom') ;
195
	                // On rempli le tableau a donner en parametre a HTML_Table avec toutes ces infos, une par colonne
201
	                // On rempli le tableau a donner en parametre a HTML_Table avec toutes ces infos, une par colonne
196
	                $ligne_tableau = array($lien_nom, $taille, $nom_prenom, $tableau_document[$i]->getDateMiseAJour()) ;
202
	                $ligne_tableau = array($lien_nom, $taille, $nom_prenom, $tableau_document[$i]->getDateMiseAJour()) ;
197
	                if ($droits <= PROJET_DROIT_CONTRIBUTEUR) array_push ($ligne_tableau, $tableau_document[$i]->getVisibilite()) ;
203
	                if ($droits <= PROJET_DROIT_CONTRIBUTEUR) array_push ($ligne_tableau, $tableau_document[$i]->getVisibilite()) ;
198
	                
204
	                
199
	                // On ajoute au tableau, les action couper / modifier / supprimer
205
	                // On ajoute au tableau, les action couper / modifier / supprimer
200
	                if ($droits <= PROJET_DROIT_COORDINATEUR || $this->_auth->getAuthData(PROJET_CHAMPS_ID) == $tableau_document[$i]->_id_proprietaire) 
206
	                if ($droits <= PROJET_DROIT_COORDINATEUR || $this->_auth->getAuthData(PROJET_CHAMPS_ID) == $tableau_document[$i]->_id_proprietaire) 
201
	                                                array_push ($ligne_tableau, $this->_actions ($tableau_document[$i])) ;
207
	                                                array_push ($ligne_tableau, $this->_actions ($tableau_document[$i])) ;
-
 
208
	                
202
	                if ($tableau_document[$i]->getVisibilite() != 'prive' || $droits < PROJET_DROIT_AUCUN) {
209
	                if ($tableau_document[$i]->getVisibilite() != 'prive' || $droits < PROJET_DROIT_AUCUN) {
203
		                $this->addRow ($ligne_tableau, array('class' => $class[$compteur]), 'TD', true) ;
210
		                $this->addRow ($ligne_tableau, array('class' => $class[$compteur]), 'TD', true) ;
204
		                // enfin , s'il y a une description, on l'ajoute, mais sur une ligne entière (colspan)
211
		                // enfin , s'il y a une description, on l'ajoute, mais sur une ligne entière (colspan)
205
		                if ($tableau_document[$i]->getDescription() != "") {
212
		                if ($tableau_document[$i]->getDescription() != "") {
206
		                    $this->addRow (array ($tableau_document[$i]->getDescription()), 
213
		                    $this->addRow (array ($tableau_document[$i]->getDescription()), 
207
		                    		array ('colspan' => $this->getColCount(), 'class' => $class[$compteur])) ;
214
		                    		array ('colspan' => $this->getColCount(), 'class' => $class[$compteur])) ;
208
		                    $this->updateRowAttributes ($this->getRowCount()-1, array ('class' => $class[$compteur]), true) ;
215
		                    $this->updateRowAttributes ($this->getRowCount()-1, array ('class' => $class[$compteur]), true) ;
209
		                }
216
		                }
210
	                }
217
	                }
211
	                $compteur++;
218
	                $compteur++;
212
	            }
219
	            }
213
	            
220
	            
214
	            if ($compteur == 2) $compteur = 0 ;
221
	            if ($compteur == 2) $compteur = 0 ;
215
	        }
222
	        }
216
	        $this->_url->removeQueryString('id_document');
223
	        $this->_url->removeQueryString('id_document');
217
	        $this->updateColAttributes(0, array ('class' => 'col1')) ;
224
	        $this->updateColAttributes(0, array ('class' => 'col1')) ;
218
        } else {
225
        } else {
219
        	
226
        	
220
        }
227
        }
221
    } // end of member function construitListe
228
    } // end of member function construitListe
222
 
229
 
223
    /**
230
    /**
224
     * 
231
     * 
225
     *
232
     *
226
     * @param Array actions Un tableau avec les valeurs d'actions comme cle. "couper", modifier",
233
     * @param Array actions Un tableau avec les valeurs d'actions comme cle. "couper", modifier",
227
     * "supprimer".
234
     * "supprimer".
228
     * @return void
235
     * @return void
229
     * @access public
236
     * @access public
230
     */
237
     */
231
    function setAction( $actions )
238
    function setAction( $actions )
232
    {
239
    {
233
        $this->_actions = $actions ;
240
        $this->_actions = $actions ;
234
    }
241
    }
235
 
242
 
236
    /**
243
    /**
237
     * 
244
     * 
238
     *
245
     *
239
     * @param string le mode, valeur possible standart ou ajax
246
     * @param string le mode, valeur possible standart ou ajax
240
     * @return void
247
     * @return void
241
     * @access public
248
     * @access public
242
     */
249
     */
243
    function setModeAffichage( $mode )
250
    function setModeAffichage( $mode )
244
    {
251
    {
245
        $this->_mode_affichage = $mode ;
252
        $this->_mode_affichage = $mode ;
246
    }
253
    }
247
    
254
    
248
 
255
 
249
    /**
256
    /**
250
     * 
257
     * 
251
     *
258
     *
252
     * @param string chemin Le chemin vers les icones couper, coller ...
259
     * @param string chemin Le chemin vers les icones couper, coller ...
253
     * @return void
260
     * @return void
254
     * @access public
261
     * @access public
255
     */
262
     */
256
    function setCheminIcones( $chemin )
263
    function setCheminIcones( $chemin )
257
    {
264
    {
258
        $this->_chemin_icone = $chemin ;
265
        $this->_chemin_icone = $chemin ;
259
    }
266
    }
260
 
267
 
261
    /**
268
    /**
262
     * Surcharge de l'operation de la classe mere. Ajoute la navigation dans les
269
     * Surcharge de l'operation de la classe mere. Ajoute la navigation dans les
263
     * repertoires.
270
     * repertoires.
264
     *
271
     *
265
     * @return string
272
     * @return string
266
     * @access public
273
     * @access public
267
     */
274
     */
268
    function toHTML($id_projet = '', $droits)
275
    function toHTML($id_projet = '', $droits)
269
    {
276
    {
270
        if ($this->_mode_affichage == 'standart') {
277
        if ($this->_mode_affichage == 'standart') {
271
	        $chemin_navig = "" ;
278
	        $chemin_navig = "" ;
272
	        if ($this->_id_repertoire != "") {
279
	        if ($this->_id_repertoire != "") {
273
	            $this->_url->removeQueryString(PROJET_VARIABLE_ID_REPERTOIRE) ;
280
	            $this->_url->removeQueryString(PROJET_VARIABLE_ID_REPERTOIRE) ;
274
	            $chemin_navig = "<p>" ;
281
	            $chemin_navig = "<p>" ;
275
	            $chemin_navig .= "<a href=\"".$this->_url->getURL()."\">".PROJET_RACINE."</a>\n" ;
282
	            $chemin_navig .= "<a href=\"".$this->_url->getURL()."\">".PROJET_RACINE."</a>\n" ;
276
	            $this->_url->addQueryString(PROJET_VARIABLE_ID_REPERTOIRE, $this->_id_repertoire) ;
283
	            $this->_url->addQueryString(PROJET_VARIABLE_ID_REPERTOIRE, $this->_id_repertoire) ;
277
	            for ($i = 0; $i < count ($this->_chemin_navigation); $i++) {
284
	            for ($i = 0; $i < count ($this->_chemin_navigation); $i++) {
278
	                $chemin_navig .= "&gt;&nbsp;" ;
285
	                $chemin_navig .= "&gt;&nbsp;" ;
279
	                $doc = new document ($this->_chemin_navigation[$i], $GLOBALS['projet_db']);
286
	                $doc = new document ($this->_chemin_navigation[$i], $GLOBALS['projet_db']);
280
	                $nom = $doc->getNomLong() ;
287
	                $nom = $doc->getNomLong() ;
281
	                $this->_url->addQueryString ('id_repertoire', $this->_chemin_navigation[$i]) ;
288
	                $this->_url->addQueryString ('id_repertoire', $this->_chemin_navigation[$i]) ;
282
	                $chemin_navig .= "<a href=\"".$this->_url->getURL()."\">".$nom."</a>\n" ; 
289
	                $chemin_navig .= "<a href=\"".$this->_url->getURL()."\">".$nom."</a>\n" ; 
283
	            }
290
	            }
284
	            $chemin_navig .= "</p>\n" ;
291
	            $chemin_navig .= "</p>\n" ;
285
	        }
292
	        }
286
	        $res = $chemin_navig.HTML_Liste::toHTML() ;
293
	        $res = $chemin_navig.HTML_Liste::toHTML() ;
287
	        if ($this->getRowCount() == 1 && $this->_id_repertoire == '') {
294
	        if ($this->getRowCount() == 1 && $this->_id_repertoire == '') {
288
	            return '<div>'.PROJET_PAS_DE_DOCUMENTS.'</div>'."\n";
295
	            return '<div>'.PROJET_PAS_DE_DOCUMENTS.'</div>'."\n";
289
	        }
296
	        }
290
        } else {
297
        } else {
291
        	GEN_stockerFichierScript('dojo', 'api/js/dojo/dojo.js', 'text/javascript');
298
        	GEN_stockerFichierScript('dojo', 'api/js/dojo/dojo.js', 'text/javascript');
292
        	GEN_stockerFichierScript('dojoScriptProjet', 'client/projet/js/arbreDocument.js');
299
        	GEN_stockerFichierScript('dojoScriptProjet', 'client/projet/js/arbreDocument.js');
293
		
300
		
294
			$res = '' ;
301
			$res = '' ;
295
			
302
			
296
			$RCPUrl = PROJET_CHEMIN_APPLI.'services/ecouteArbreFichier.php?id_projet='.$id_projet;
303
			$RCPUrl = PROJET_CHEMIN_APPLI.'services/ecouteArbreFichier.php?id_projet='.$id_projet;
297
			$this->_url->addQueryString(PROJET_VARIABLE_SERVICE, 'ecouteArbreFichier');
304
			$this->_url->addQueryString(PROJET_VARIABLE_SERVICE, 'ecouteArbreFichier');
298
			
305
			
299
			$RCPUrl = $this->_url->getURL();
306
			$RCPUrl = $this->_url->getURL();
300
			// Le noeud racine
307
			// Le noeud racine
301
				
308
				
302
			if ($droits <= PROJET_DROIT_CONTRIBUTEUR) {
309
			if ($droits <= PROJET_DROIT_CONTRIBUTEUR) {
303
				$tree = '<div dojoType="Tree" DNDMode="between" selector="treeSelector" DNDAcceptTypes="bandTree" widgetId="bandTree" controller="treeController" eventNames="moveTo:nodeRemoved">';
310
				$tree = '<div dojoType="Tree" DNDMode="between" selector="treeSelector" DNDAcceptTypes="bandTree" widgetId="bandTree" controller="treeController" eventNames="moveTo:nodeRemoved">';
304
			} else {
311
			} else {
305
				$tree = '<div dojoType="Tree" selector="treeSelector" DNDAcceptTypes="bandTree" widgetId="bandTree" controller="treeController">';
312
				$tree = '<div dojoType="Tree" selector="treeSelector" DNDAcceptTypes="bandTree" widgetId="bandTree" controller="treeController">';
306
			}
313
			}
307
	        $res .= '<div dojoType="TreeLoadingController" RPCUrl="'.$RCPUrl.'" widgetId="treeController" DNDController="create"></div>
314
	        $res .= '<div dojoType="TreeLoadingController" RPCUrl="'.$RCPUrl.'" widgetId="treeController" DNDController="create"></div>
308
				<div dojoType="TreeSelector" widgetId="treeSelector"></div>'.$tree.
315
				<div dojoType="TreeSelector" widgetId="treeSelector"></div>'.$tree.
309
				'<div dojoType="TreeNode" title="Racine" widgetId="rootNode" objectId="root" isFolder="true"></div></div>';    
316
				'<div dojoType="TreeNode" title="Racine" widgetId="rootNode" objectId="root" isFolder="true"></div></div>';    
310
			                              
317
			                              
311
        }
318
        }
312
        return $res ;
319
        return $res ;
313
    } // end of member function toHTML
320
    } // end of member function toHTML
314
 
321
 
315
    /**
322
    /**
316
     * 
323
     * 
317
     *
324
     *
318
     * @param Array tableau_navigation Un tableau contenant les identifiants et les noms des repertoires.  0 => ["id"],
325
     * @param Array tableau_navigation Un tableau contenant les identifiants et les noms des repertoires.  0 => ["id"],
319
     * ["nom"] etc.
326
     * ["nom"] etc.
320
     * @return void
327
     * @return void
321
     * @access public
328
     * @access public
322
     */
329
     */
323
    function setCheminNavigation( $tableau_navigation )
330
    function setCheminNavigation( $tableau_navigation )
324
    {
331
    {
325
        $this->_chemin_navigation = $tableau_navigation ;
332
        $this->_chemin_navigation = $tableau_navigation ;
326
    } // end of member function setCheminNavigation
333
    } // end of member function setCheminNavigation
327
 
334
 
328
    /**
335
    /**
329
     * Affiche la legende des actions du module "documents"
336
     * Affiche la legende des actions du module "documents"
330
     *
337
     *
331
     * @return string
338
     * @return string
332
     * @access public
339
     * @access public
333
     */
340
     */
334
    function affLegende( )
341
    function affLegende( )
335
    {
342
    {
336
        $res = "<h2 class=\"titre2_projet\">".PROJET_LEGENDE."</h2>\n" ;
343
        $res = "<h2 class=\"titre2_projet\">".PROJET_LEGENDE."</h2>\n" ;
337
        $res .= "<p><img src=\"".$this->_chemin_icone."/cut.gif\" title=\"couper\" alt=\"couper\">".PROJET_LEGENDE_DEPLACE."</p>\n" ;
344
        $res .= "<p><img src=\"".$this->_chemin_icone."/cut.gif\" title=\"couper\" alt=\"couper\">".PROJET_LEGENDE_DEPLACE."</p>\n" ;
338
        $res .= "<p><img src=\"".$this->_chemin_icone."/modif.png\" title=\"modifier\" alt=\"modifier\"> ".PROJET_LEGENDE_MODIFIE."</p>\n" ;
345
        $res .= "<p><img src=\"".$this->_chemin_icone."/modif.png\" title=\"modifier\" alt=\"modifier\"> ".PROJET_LEGENDE_MODIFIE."</p>\n" ;
339
        $res .= "<p><img src=\"".$this->_chemin_icone."/trash.gif\" title=\"supprimer\" alt=\"supprimer\"> ".PROJET_LEGENDE_SUPPR."</p>\n" ;
346
        $res .= "<p><img src=\"".$this->_chemin_icone."/trash.gif\" title=\"supprimer\" alt=\"supprimer\"> ".PROJET_LEGENDE_SUPPR."</p>\n" ;
340
        return $res ;
347
        return $res ;
341
    }
348
    }
342
 
349
 
343
 
350
 
344
    /**
351
    /**
345
     * Renvoie le chemin HTML, depuis le repertoire courant jusqu'a la racine.
352
     * Renvoie le chemin HTML, depuis le repertoire courant jusqu'a la racine.
346
     *
353
     *
347
     * @return string
354
     * @return string
348
     * @access private
355
     * @access private
349
     */
356
     */
350
    function _getCheminHTML( )
357
    function _getCheminHTML( )
351
    {
358
    {
352
        $path = "" ;
359
        $path = "" ;
353
 
360
 
354
        return $path ;
361
        return $path ;
355
    }
362
    }
356
 
363
 
357
    /**
364
    /**
358
     * Renvoie une chaine contenant le code html des icones des actions possibles sur un
365
     * Renvoie une chaine contenant le code html des icones des actions possibles sur un
359
     * fichier, c'est a dire couper, modifier, supprimer.
366
     * fichier, c'est a dire couper, modifier, supprimer.
360
     *
367
     *
361
     * @return string
368
     * @return string
362
     * @access private
369
     * @access private
363
     */
370
     */
364
    function _actions($document)
371
    function _actions($document)
365
    {
372
    {
366
        $this->_url->addQueryString ('id_document', $document->getIdDocument()) ;
373
        $this->_url->addQueryString ('id_document', $document->getIdDocument()) ;
367
        
374
        
368
        $this->_url->addQueryString (PROJET_VARIABLE_ACTION, $this->_actions["couper"]) ;
375
        $this->_url->addQueryString (PROJET_VARIABLE_ACTION, $this->_actions["couper"]) ;
369
        $couper = ' '.PROJET_FICHIER_COUPER ;
376
        $couper = ' '.PROJET_FICHIER_COUPER ;
370
        $couper = '<a href="'.$this->_url->getURL().'">'.$couper.'</a>' ;
377
        $couper = '<a href="'.$this->_url->getURL().'">'.$couper.'</a>' ;
371
        
378
        
372
        $this->_url->addQueryString (PROJET_VARIABLE_ACTION, $this->_actions["modifier"]) ;
379
        $this->_url->addQueryString (PROJET_VARIABLE_ACTION, $this->_actions["modifier"]) ;
373
        $modifier = '<a href="'.$this->_url->getURL().'">'.PROJET_FICHIER_MODIFIER.'</a> ' ;
380
        $modifier = '<a href="'.$this->_url->getURL().'">'.PROJET_FICHIER_MODIFIER.'</a> ' ;
374
        $this->_url->addQueryString (PROJET_VARIABLE_ACTION, $this->_actions["supprimer"]) ;
381
        $this->_url->addQueryString (PROJET_VARIABLE_ACTION, $this->_actions["supprimer"]) ;
375
        $supprimer= '<a href="'.$this->_url->getURL().'" onclick="javascript:return confirm (\''.PROJET_FICHIER_SUPPRIMER.' ?\');">'.PROJET_FICHIER_SUPPRIMER.'</a>' ;
382
        $supprimer= '<a href="'.$this->_url->getURL().'" onclick="javascript:return confirm (\''.PROJET_FICHIER_SUPPRIMER.' ?\');">'.PROJET_FICHIER_SUPPRIMER.'</a>' ;
376
        $this->_url->removeQueryString ('id_document') ;
383
        $this->_url->removeQueryString ('id_document') ;
377
        $this->_url->addQueryString (PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_DOCUMENT) ;
384
        $this->_url->addQueryString (PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_DOCUMENT) ;
378
        return $modifier.$supprimer.$couper ;
385
        return $modifier.$supprimer.$couper ;
379
    } // end of member function _action
386
    } // end of member function _action
380
 
387
 
381
 
388
 
382
} // end of HTML_listeDocuments
389
} // end of HTML_listeDocuments
383
?>
390
?>