Subversion Repositories Applications.papyrus

Rev

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

Rev Author Line No. Line
448 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
// +------------------------------------------------------------------------------------------------------+
474 alexandre_ 22
// CVS : $Id: HTML_formulaireProjet.class.php,v 1.2 2005-09-27 16:42:00 alexandre_tb Exp $
448 ddelon 23
/**
24
* Application projet
25
*
26
* La classe HTML_formulaireProjet
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
474 alexandre_ 34
*@version       $Revision: 1.2 $
448 ddelon 35
// +------------------------------------------------------------------------------------------------------+
36
*/
37
 
38
 
39
// +------------------------------------------------------------------------------------------------------+
40
// |                                            ENTETE du PROGRAMME                                       |
41
// +------------------------------------------------------------------------------------------------------+
42
 
43
/** Inclure le fichier de langue pour utiliser cette classe de façon autonome. */
44
 
45
require_once 'HTML/QuickForm.php' ;
46
require_once 'HTML/QuickForm/checkbox.php' ;
47
require_once 'HTML/QuickForm/select.php' ;
48
 
49
// +------------------------------------------------------------------------------------------------------+
50
// |                                           LISTE des constantes                                       |
51
// +------------------------------------------------------------------------------------------------------+
52
 
53
 
54
/**
55
 * class HTML_formulaireProjet
56
 * Cette classe représente un formulaire pour saisir un projet ou le modifier.
57
 */
58
class HTML_formulaireProjet extends HTML_QuickForm
59
{
60
 
61
 
62
    /**
63
     * Constructeur
64
     *
65
     * @param string formName Le nom du formulaire.
66
     * @param string method Soit get soit post, voir le protocole HTTP
67
     * @param string action L'action du formulaire.
68
     * @param string target La cible du formulaire.
69
     * @param Array attributes Des attributs supplémentaires pour la balise <form>
70
     * @param bool trackSubmit Pour repérer si la formulaire a été soumis.
71
     * @return void
72
     * @access public
73
     */
74
    function HTML_formulaireProjet( $formName = "",  $method = "post",  $action = "",  $target = "_self",  $attributes = "",  $trackSubmit = false )
75
    {
76
        HTML_QuickForm::HTML_QuickForm($formName, $method, $action, $target, $attributes, $trackSubmit) ;
77
    } // end of member function HTML_formulaireProjet
78
 
79
    /**
80
     * Renvoie le code HTML du formulaire.
81
     *
82
     * @return string
83
     * @access public
84
     */
85
    function toHTML( )
86
    {
87
        $res = HTML_QuickForm::toHTML() ;
88
        return $res ;
89
    } // end of member function toHTML
90
 
91
 
92
 
93
    /**
94
     * Ajoute les champs nécessaire au formulaire.
95
     *
96
     * @return void
97
     * @access public
98
     */
474 alexandre_ 99
    function construitFormulaire(&$tableau_projet, $tableau_type = '')
448 ddelon 100
    {
474 alexandre_ 101
        $this->addElement ('text', 'projet_titre', PROJET_TITRE, array ('class' => 'projet_titre', 'maxlength' => 255)) ;
448 ddelon 102
        $this->addRule ('projet_titre', PROJET_ALERTE_TITRE, 'required', '', 'client') ;
103
 
474 alexandre_ 104
        $this->addElement ('textarea', 'projet_resume', PROJET_RESUME, array('class'=>'projet_resume', 'rows'=>"10")) ;
105
        $this->addElement ('textarea', 'projet_description', PROJET_DESCRIPTION, array('class'=>"projet_resume", 'rows'=>"40")) ;
106
        $this->addElement ('text', 'projet_espace_internet', PROJET_ESPACE_INTERNET, array ('class' => 'projet_espace_internet')) ;
448 ddelon 107
 
108
        $label_projet = array() ;
109
        $id_projet = array() ;
110
        foreach ($tableau_projet as $projet) {
111
            $label_projet[] = $projet->getTitre() ;
112
            $id_projet[] = $projet->getId() ;
113
        }
474 alexandre_ 114
        $select = new HTML_QuickForm_select ('projet_asso', PROJET_PERE, $label_projet, array ('class' => 'projet_asso')) ;
448 ddelon 115
        $this->addElement($select) ;
116
        unset ($select) ;
117
 
118
        $this->applyFilter(array('projet_resume', 'projet_description'), 'addslashes') ;
474 alexandre_ 119
 
120
        if ($tableau_type != '') {
121
            $select = new HTML_QuickForm_select ('projet_type', PROJET_TYPE, $tableau_type, array ('class' => 'projet_type')) ;
122
            $this->addElement($select) ;
123
            unset ($select) ;
124
        }
448 ddelon 125
        $this->setRequiredNote('<span style="color: #ff0000">*</span>'.PROJET_CHAMPS_REQUIS) ;
126
        $url_annuler = new Net_URL($this->getAttribute('action')) ;
127
        $url_annuler->removeQueryString(PROJET_VARIABLE_ACTION) ;
128
 
129
        // on fait un groupe avec les boutons pour les mettres sur la même ligne
130
        $buttons[] = &HTML_QuickForm::createElement('link', 'annuler', PROJET_FICHIER_ANNULER,
131
                            preg_replace ("/&amp;/", "&", $url_annuler->getURL()), PROJET_FICHIER_ANNULER); // Le preg_replace contourne un pb de QuickForm et Net_URL
132
                                                                                                            // qui remplacent deux fois les & par des &amp;
133
                                                                                                            // ce qui fait échouer le lien
134
        $buttons[] = &HTML_QuickForm::createElement('submit', 'valider', PROJET_FICHIER_VALIDER);
135
        $this->addGroup($buttons, null, null, '&nbsp;');
136
 
137
    } // end of member function _construitFormulaire
138
 
139
 
140
 
141
} // end of HTML_formulaireProjet
142
?>