Subversion Repositories Applications.projet

Rev

Rev 11 | 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
// +------------------------------------------------------------------------------------------------------+
431 mathias 22
// CVS : $Id: HTML_formulaireListeExterne.class.php,v 1.2 2005/09/27 16:42:00 alexandre_tb Exp $
2 ddelon 23
/**
24
* Application projet
25
*
26
* La classe controleur projet
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
11 alexandre_ 34
*@version       $Revision: 1.2 $
2 ddelon 35
// +------------------------------------------------------------------------------------------------------+
36
*/
37
 
38
// +------------------------------------------------------------------------------------------------------+
39
// |                                            ENTETE du PROGRAMME                                       |
40
// +------------------------------------------------------------------------------------------------------+
41
 
42
/** Inclure le fichier de langue pour utiliser cette classe de façon autonome. */
43
 
44
require_once 'HTML/QuickForm.php' ;
45
require_once 'HTML/QuickForm/checkbox.php' ;
46
 
47
// +------------------------------------------------------------------------------------------------------+
48
// |                                           LISTE des constantes                                       |
49
// +------------------------------------------------------------------------------------------------------+
50
 
51
 
52
/**
53
 * class HTML_formulaireListe
54
 * Cette classe représente un formulaire pour saisir un projet ou le modifier.
55
 */
56
class HTML_formulaireListeExterne extends HTML_QuickForm
57
{
58
    /**
59
     * Constructeur
60
     *
61
     * @param string formName Le nom du formulaire.
62
     * @param string method Soit get soit post, voir le protocole HTTP
63
     * @param string action L'action du formulaire.
64
     * @param string target La cible du formulaire.
65
     * @param Array attributes Des attributs supplémentaires pour la balise <form>
66
     * @param bool trackSubmit Pour repérer si la formulaire a été soumis.
67
     * @return void
68
     * @access public
69
     */
70
    function HTML_formulaireListe( $formName = "",  $method = "post",  $action = "",  $target = "_self",  $attributes = "",  $trackSubmit = false )
71
    {
72
        HTML_QuickForm::HTML_QuickForm($formName, $method, $action, $target, $attributes, $trackSubmit) ;
73
    } // end of member function HTML_formulaireListe
74
 
75
    /**
76
     * Renvoie le code HTML du formulaire.
77
     *
78
     * @return string
79
     * @access public
80
     */
81
    function toHTML( )
82
    {
83
        $res = HTML_QuickForm::toHTML() ;
84
        return $res ;
85
    } // end of member function toHTML
86
 
87
    /**
88
     * Ajoute les champs nécessaire au formulaire.
89
     *
90
     * @return void
91
     * @access public
92
     */
93
    function construitFormulaire($tableau_liste_externe)
94
    {
95
        foreach ($tableau_liste_externe as $cle => $valeur) {
96
            $this->addElement ('checkbox', 'liste_'.$cle, '', $valeur) ;
97
        }
98
 
99
        $this->setRequiredNote('<span style="color: #ff0000">*</span>'.PROJET_CHAMPS_REQUIS) ;
100
        $url_annuler = new Net_URL($this->getAttribute('action')) ;
101
        $url_annuler->removeQueryString(PROJET_VARIABLE_ACTION) ;
102
        $buttons[] = &HTML_QuickForm::createElement('link', 'annuler', PROJET_FICHIER_ANNULER,
103
                            preg_replace ("/&amp;/", "&", $url_annuler->getURL()), PROJET_FICHIER_ANNULER); // Le preg_replace contourne un pb de QuickForm et Net_URL
104
                                                                                                            // qui remplacent deux fois les & par des &amp;
105
                                                                                                            // ce qui fait échouer le lien
106
        $buttons[] = &HTML_QuickForm::createElement('submit', 'valider', PROJET_FICHIER_VALIDER);
107
        $this->addGroup($buttons, null, null, '&nbsp;');
108
    } // end of member function _construitFormulaire
109
 
110
} // end of HTML_formulaireListe
111
 
112
 
113
 
114
 
115
 
116
?>