Subversion Repositories Applications.projet

Rev

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