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 |
// +------------------------------------------------------------------------------------------------------+
|
885 |
alexandre_ |
22 |
// CVS : $Id: HTML_formulaireProjet.class.php,v 1.6 2006-07-04 09:26:46 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
|
885 |
alexandre_ |
34 |
*@version $Revision: 1.6 $
|
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') ;
|
661 |
alexandre_ |
103 |
if ($tableau_type != '') {
|
|
|
104 |
$select = new HTML_QuickForm_select ('projet_type', PROJET_TYPE, $tableau_type, array ('class' => 'projet_type')) ;
|
|
|
105 |
$this->addElement($select) ;
|
|
|
106 |
unset ($select) ;
|
|
|
107 |
}
|
474 |
alexandre_ |
108 |
$this->addElement ('textarea', 'projet_resume', PROJET_RESUME, array('class'=>'projet_resume', 'rows'=>"10")) ;
|
662 |
alexandre_ |
109 |
$this->addElement ('textarea', 'projet_description', PROJET_DESCRIPTION, array('class'=>"projet_resume", 'rows'=>"20")) ;
|
474 |
alexandre_ |
110 |
$this->addElement ('text', 'projet_espace_internet', PROJET_ESPACE_INTERNET, array ('class' => 'projet_espace_internet')) ;
|
448 |
ddelon |
111 |
|
885 |
alexandre_ |
112 |
// on fait un groupe avec les boutons radio pour les mettres sur la même ligne
|
|
|
113 |
|
|
|
114 |
$radio[] = &HTML_QuickForm::createElement('radio', 'projet_moderation', '0', PROJET_NON_MODERE, '0') ;
|
|
|
115 |
$radio[] = &HTML_QuickForm::createElement('radio', 'projet_moderation', '1', PROJET_MODERE, '1');
|
|
|
116 |
$this->addGroup($radio, null, PROJET_INSCRIPTION, ' ');
|
|
|
117 |
|
448 |
ddelon |
118 |
$label_projet = array() ;
|
|
|
119 |
$id_projet = array() ;
|
|
|
120 |
foreach ($tableau_projet as $projet) {
|
|
|
121 |
$label_projet[] = $projet->getTitre() ;
|
|
|
122 |
$id_projet[] = $projet->getId() ;
|
|
|
123 |
}
|
538 |
alexandre_ |
124 |
if (PROJET_UTILISE_HIERARCHIE) {
|
|
|
125 |
$select = new HTML_QuickForm_select ('projet_asso', PROJET_PERE, $label_projet, array ('class' => 'projet_asso')) ;
|
|
|
126 |
$this->addElement($select) ;
|
|
|
127 |
unset ($select) ;
|
|
|
128 |
}
|
448 |
ddelon |
129 |
$this->applyFilter(array('projet_resume', 'projet_description'), 'addslashes') ;
|
474 |
alexandre_ |
130 |
|
661 |
alexandre_ |
131 |
|
448 |
ddelon |
132 |
$this->setRequiredNote('<span style="color: #ff0000">*</span>'.PROJET_CHAMPS_REQUIS) ;
|
|
|
133 |
$url_annuler = new Net_URL($this->getAttribute('action')) ;
|
|
|
134 |
$url_annuler->removeQueryString(PROJET_VARIABLE_ACTION) ;
|
|
|
135 |
|
|
|
136 |
// on fait un groupe avec les boutons pour les mettres sur la même ligne
|
|
|
137 |
$buttons[] = &HTML_QuickForm::createElement('link', 'annuler', PROJET_FICHIER_ANNULER,
|
|
|
138 |
preg_replace ("/&/", "&", $url_annuler->getURL()), PROJET_FICHIER_ANNULER); // Le preg_replace contourne un pb de QuickForm et Net_URL
|
|
|
139 |
// qui remplacent deux fois les & par des &
|
|
|
140 |
// ce qui fait échouer le lien
|
|
|
141 |
$buttons[] = &HTML_QuickForm::createElement('submit', 'valider', PROJET_FICHIER_VALIDER);
|
|
|
142 |
$this->addGroup($buttons, null, null, ' ');
|
|
|
143 |
|
|
|
144 |
} // end of member function _construitFormulaire
|
|
|
145 |
|
|
|
146 |
|
|
|
147 |
|
|
|
148 |
} // end of HTML_formulaireProjet
|
|
|
149 |
?>
|