1 |
vpihour |
1249 |
<?php |
2 |
|
|
//$Id$ |
3 |
|
|
//gen openMairie le 13/02/2013 14:41 |
4 |
|
|
|
5 |
|
|
require_once ("../gen/obj/cerfa.class.php"); |
6 |
|
|
|
7 |
|
|
class cerfa extends cerfa_gen { |
8 |
|
|
|
9 |
|
|
function cerfa($id,&$db,$debug) { |
10 |
|
|
$this->constructeur($id,$db,$debug); |
11 |
|
|
}// fin constructeur |
12 |
|
|
|
13 |
nhaye |
1258 |
|
14 |
|
|
function setType(&$form,$maj) { |
15 |
|
|
parent::setType($form,$maj); |
16 |
|
|
|
17 |
|
|
|
18 |
vpihour |
1329 |
//Ajout des select sur les tableaux |
19 |
nhaye |
1258 |
if($maj == 0) { |
20 |
vpihour |
1329 |
|
21 |
nhaye |
1258 |
$form->setType('tab_surface', 'select'); |
22 |
vpihour |
1329 |
$form->setType('tab_tax_su_princ', 'select'); |
23 |
|
|
$form->setType('tab_tax_su_heber', 'select'); |
24 |
|
|
$form->setType('tab_tax_su_secon', 'select'); |
25 |
|
|
$form->setType('tab_tax_su_tot', 'select'); |
26 |
|
|
$form->setType('tab_tax_su_non_habit_surf', 'select'); |
27 |
|
|
$form->setType('tab_tax_am', 'select'); |
28 |
nhaye |
1258 |
}elseif($maj == 1) { |
29 |
vpihour |
1329 |
|
30 |
nhaye |
1258 |
$form->setType('tab_surface', 'select'); |
31 |
vpihour |
1329 |
$form->setType('tab_tax_su_princ', 'select'); |
32 |
|
|
$form->setType('tab_tax_su_heber', 'select'); |
33 |
|
|
$form->setType('tab_tax_su_secon', 'select'); |
34 |
|
|
$form->setType('tab_tax_su_tot', 'select'); |
35 |
|
|
$form->setType('tab_tax_su_non_habit_surf', 'select'); |
36 |
|
|
$form->setType('tab_tax_am', 'select'); |
37 |
nhaye |
1258 |
}elseif($maj == 2) { |
38 |
vpihour |
1329 |
|
39 |
nhaye |
1258 |
$form->setType('tab_surface', 'selecthiddenstatic'); |
40 |
vpihour |
1329 |
$form->setType('tab_tax_su_princ', 'selecthiddenstatic'); |
41 |
|
|
$form->setType('tab_tax_su_heber', 'selecthiddenstatic'); |
42 |
|
|
$form->setType('tab_tax_su_secon', 'selecthiddenstatic'); |
43 |
|
|
$form->setType('tab_tax_su_tot', 'selecthiddenstatic'); |
44 |
|
|
$form->setType('tab_tax_su_non_habit_surf', 'selecthiddenstatic'); |
45 |
|
|
$form->setType('tab_tax_am', 'selecthiddenstatic'); |
46 |
nhaye |
1258 |
}elseif($maj == 3) { |
47 |
vpihour |
1329 |
|
48 |
nhaye |
1258 |
$form->setType('tab_surface', 'selecthiddenstatic'); |
49 |
vpihour |
1329 |
$form->setType('tab_tax_su_princ', 'selecthiddenstatic'); |
50 |
|
|
$form->setType('tab_tax_su_heber', 'selecthiddenstatic'); |
51 |
|
|
$form->setType('tab_tax_su_secon', 'selecthiddenstatic'); |
52 |
|
|
$form->setType('tab_tax_su_tot', 'selecthiddenstatic'); |
53 |
|
|
$form->setType('tab_tax_su_non_habit_surf', 'selecthiddenstatic'); |
54 |
|
|
$form->setType('tab_tax_am', 'selecthiddenstatic'); |
55 |
nhaye |
1258 |
} |
56 |
|
|
} |
57 |
|
|
|
58 |
|
|
function setSelect(&$form, $maj,&$db,$debug) { |
59 |
|
|
parent::setSelect($form, $maj,$db,$debug); |
60 |
|
|
|
61 |
|
|
if(file_exists ("../sql/".$db->phptype."/".$this->table.".form.inc.php")) |
62 |
|
|
include ("../sql/".$db->phptype."/".$this->table.".form.inc.php"); |
63 |
|
|
elseif(file_exists ("../sql/".$db->phptype."/".$this->table.".form.inc")) |
64 |
|
|
include ("../sql/".$db->phptype."/".$this->table.".form.inc"); |
65 |
|
|
|
66 |
|
|
// parametrage du tableau de surface |
67 |
|
|
$contenu=array(); |
68 |
|
|
$contenu[0]=array_keys($tab_surface); |
69 |
|
|
$contenu[1]=array_values($tab_surface); |
70 |
|
|
$form->setSelect("tab_surface",$contenu); |
71 |
|
|
|
72 |
nhaye |
1268 |
$contenu[0]=array_keys($tab_tax_su_princ); |
73 |
|
|
$contenu[1]=array_values($tab_tax_su_princ); |
74 |
|
|
$form->setSelect("tab_tax_su_princ",$contenu); |
75 |
|
|
|
76 |
|
|
$contenu[0]=array_keys($tab_tax_su_heber); |
77 |
|
|
$contenu[1]=array_values($tab_tax_su_heber); |
78 |
|
|
$form->setSelect("tab_tax_su_heber",$contenu); |
79 |
|
|
|
80 |
|
|
$contenu[0]=array_keys($tab_tax_su_secon); |
81 |
|
|
$contenu[1]=array_values($tab_tax_su_secon); |
82 |
|
|
$form->setSelect("tab_tax_su_secon",$contenu); |
83 |
|
|
|
84 |
|
|
$contenu[0]=array_keys($tab_tax_su_tot); |
85 |
|
|
$contenu[1]=array_values($tab_tax_su_tot); |
86 |
|
|
$form->setSelect("tab_tax_su_tot",$contenu); |
87 |
|
|
|
88 |
|
|
$contenu[0]=array_keys($tab_tax_su_non_habit_surf); |
89 |
|
|
$contenu[1]=array_values($tab_tax_su_non_habit_surf); |
90 |
|
|
$form->setSelect("tab_tax_su_non_habit_surf",$contenu); |
91 |
|
|
|
92 |
|
|
$contenu[0]=array_keys($tab_tax_am); |
93 |
|
|
$contenu[1]=array_values($tab_tax_am); |
94 |
|
|
$form->setSelect("tab_tax_am",$contenu); |
95 |
|
|
|
96 |
|
|
|
97 |
|
|
|
98 |
nhaye |
1258 |
} |
99 |
|
|
|
100 |
|
|
function setLayout(&$form, $maj) { |
101 |
|
|
|
102 |
|
|
/*Fieldset Parametrage du cerfa */ |
103 |
nhaye |
1268 |
$form->setBloc('cerfa','D',"","col_12"); |
104 |
|
|
$form->setFieldset('cerfa','D' |
105 |
vpihour |
2123 |
,_("Parametrage du cerfa"), "col_12"); |
106 |
nhaye |
1258 |
|
107 |
nhaye |
1263 |
$form->setFieldset('om_validite_fin','F',''); |
108 |
|
|
$form->setBloc('om_validite_fin','F'); |
109 |
nhaye |
1258 |
|
110 |
vpihour |
2123 |
$form->setBloc('terr_juri_titul','D',"","col_12 alignFormSpec"); |
111 |
nhaye |
1616 |
$form->setFieldset('terr_juri_titul','D' |
112 |
nhaye |
2116 |
,_("Terrain"), "startClosed"); |
113 |
vpihour |
2123 |
|
114 |
|
|
$form->setBloc('terr_juri_titul','DF',_("Situation juridique du terrain"), "group"); |
115 |
|
|
$form->setBloc('terr_juri_lot','DF',"", "group"); |
116 |
|
|
$form->setBloc('terr_juri_zac','DF',"", "group"); |
117 |
|
|
$form->setBloc('terr_juri_afu','DF',"", "group"); |
118 |
|
|
$form->setBloc('terr_juri_pup','DF',"", "group"); |
119 |
|
|
$form->setBloc('terr_juri_oin','DF',"", "group"); |
120 |
|
|
$form->setBloc('terr_juri_desc','DF',"", "group"); |
121 |
|
|
$form->setBloc('terr_div_surf_etab','DF',_("Terrain issu d'une division de propriete"), "group"); |
122 |
|
|
$form->setBloc('terr_div_surf_av_div','DF',"", "group"); |
123 |
|
|
|
124 |
nhaye |
1616 |
$form->setFieldset('terr_div_surf_av_div','F',''); |
125 |
vpihour |
2123 |
|
126 |
nhaye |
1616 |
$form->setBloc('terr_div_surf_av_div','F'); |
127 |
nhaye |
1268 |
|
128 |
nhaye |
2116 |
// Aménager |
129 |
|
|
$form->setBloc('am_lotiss','D',"","col_12"); |
130 |
|
|
$form->setFieldset('am_lotiss','D' |
131 |
|
|
,_("Amenager"), "startClosed"); |
132 |
|
|
$form->setBloc('am_lotiss','D',"","col_12"); |
133 |
|
|
$form->setFieldset('am_lotiss','D' |
134 |
vpihour |
2123 |
,_("Projet d'amenagement"), "startClosed alignFormSpec"); |
135 |
nhaye |
2116 |
// bloc 4.1 |
136 |
vpihour |
2123 |
$form->setBloc('am_lotiss','DF',_("Nature des travaux, instalations |
137 |
|
|
ou amenagements envisages"), "group"); |
138 |
|
|
$form->setBloc('am_div_mun','DF',"", "group"); |
139 |
|
|
$form->setBloc('am_autre_div','DF',"", "group"); |
140 |
|
|
$form->setBloc('am_camping','DF',"", "group"); |
141 |
|
|
$form->setBloc('am_parc_resid_loi','DF',"", "group"); |
142 |
|
|
$form->setBloc('am_sport_moto','DF',"", "group"); |
143 |
|
|
$form->setBloc('am_sport_attrac','DF',"", "group"); |
144 |
|
|
$form->setBloc('am_sport_golf','DF',"", "group"); |
145 |
|
|
$form->setBloc('am_caravane','DF',"", "group"); |
146 |
|
|
$form->setBloc('am_carav_duree','DF',"", "group"); |
147 |
|
|
$form->setBloc('am_statio','DF',"", "group"); |
148 |
|
|
$form->setBloc('am_statio_cont','DF',"", "group"); |
149 |
|
|
$form->setBloc('am_affou_exhau','DF',"", "group"); |
150 |
|
|
$form->setBloc('am_affou_exhau_sup','DF',"", "group"); |
151 |
|
|
$form->setBloc('am_affou_prof','DF',"", "group"); |
152 |
|
|
$form->setBloc('am_exhau_haut','DF',"", "group"); |
153 |
|
|
|
154 |
nhaye |
2116 |
$form->setBloc('am_chem_ouv_esp','D',_("Dans les secteurs proteges :"),"col_12"); |
155 |
vpihour |
2123 |
$form->setBloc('am_chem_ouv_esp','DF',_("Amenagement situe dans un espace remarquable :"), "group"); |
156 |
|
|
$form->setBloc('am_agri_peche','DF',"", "group"); |
157 |
|
|
|
158 |
|
|
$form->setBloc('am_crea_voie','DF',_("Amenagement situe dans un secteur sauvegarde :"), "group"); |
159 |
|
|
$form->setBloc('am_modif_voie_exist','DF',"", "group"); |
160 |
|
|
$form->setBloc('am_crea_esp_sauv','DF',"", "group"); |
161 |
|
|
|
162 |
|
|
$form->setBloc('am_crea_esp_class','DF',_("Amenagement situe dans un site classe ou une reserve naturelle 1 :"), "group"); |
163 |
|
|
$form->setBloc('am_coupe_abat','DF',"", "group"); |
164 |
|
|
$form->setBloc('am_prot_plu','DF',"", "group"); |
165 |
|
|
$form->setBloc('am_prot_muni','DF',"", "group"); |
166 |
|
|
$form->setBloc('am_mobil_voyage','DF',"", "group"); |
167 |
|
|
$form->setBloc('am_aire_voyage','DF',"", "group"); |
168 |
|
|
$form->setBloc('am_rememb_afu','DF',"", "group"); |
169 |
nhaye |
2116 |
$form->setBloc('am_rememb_afu','F'); |
170 |
nhaye |
1268 |
|
171 |
vpihour |
2123 |
$form->setBloc('am_mob_art','DF',_("Dans un secteur sauvegarde, site classe ou reserve naturelle :"), "group"); |
172 |
|
|
$form->setBloc('am_modif_voie_esp','DF',"", "group"); |
173 |
|
|
$form->setBloc('am_plant_voie_esp','DF',"", "group"); |
174 |
nhaye |
1268 |
|
175 |
nhaye |
2116 |
$form->setFieldset('am_plant_voie_esp','F',''); |
176 |
|
|
$form->setBloc('am_plant_voie_esp','F'); |
177 |
|
|
$form->setBloc('am_projet_desc','D',"","col_12"); |
178 |
|
|
$form->setFieldset('am_projet_desc','D' |
179 |
vpihour |
2123 |
,_("Description amenagement"), "startClosed alignFormSpec"); |
180 |
|
|
|
181 |
|
|
$form->setBloc('am_projet_desc','DF',"", "group"); |
182 |
|
|
$form->setBloc('am_terr_surf','DF',"", "group"); |
183 |
|
|
$form->setBloc('am_tranche_desc','DF',"", "group"); |
184 |
|
|
|
185 |
nhaye |
2116 |
$form->setFieldset('am_tranche_desc','F',''); |
186 |
nhaye |
1258 |
$form->setBloc('am_tranche_desc','F'); |
187 |
nhaye |
2116 |
$form->setBloc('am_lot_max_nb','D',"","col_12"); |
188 |
|
|
$form->setFieldset('am_lot_max_nb','D' |
189 |
|
|
,_("Complement d'amenagement"), "startClosed"); |
190 |
|
|
// bloc 4.2 |
191 |
vpihour |
2123 |
$form->setBloc('am_lot_max_nb','D',_("Demande concernant un lotissement"),"col_12 alignFormSpec"); |
192 |
|
|
|
193 |
|
|
$form->setBloc('am_lot_max_nb','DF',"", "group"); |
194 |
|
|
$form->setBloc('am_lot_max_shon','DF',"", "group"); |
195 |
|
|
|
196 |
|
|
$form->setBloc('am_lot_cstr_cos','DF',_("Comment la constructibilite globale sera-t-elle repartie ?"), "group"); |
197 |
|
|
$form->setBloc('am_lot_cstr_plan','DF',"", "group"); |
198 |
|
|
$form->setBloc('am_lot_cstr_vente','DF',"", "group"); |
199 |
|
|
$form->setBloc('am_lot_fin_diff','DF',"", "group"); |
200 |
|
|
|
201 |
|
|
$form->setBloc('am_lot_consign','DF',_("si oui, quelle garantie sera utilisee ?"), "group"); |
202 |
|
|
$form->setBloc('am_lot_gar_achev','DF',"", "group"); |
203 |
|
|
$form->setBloc('am_lot_vente_ant','DF',"", "group"); |
204 |
nhaye |
2116 |
$form->setBloc('am_lot_vente_ant','F'); |
205 |
nhaye |
1258 |
|
206 |
nhaye |
2116 |
// bloc 4.3 |
207 |
|
|
$form->setBloc('am_exist_agrand','D',_("Amenagement d'un camping ou |
208 |
|
|
d'un terrain amenage en vue de l'hebergement |
209 |
|
|
touristique"),"col_12"); |
210 |
vpihour |
2123 |
$form->setBloc('am_exist_agrand','D',"", "alignFormSpec"); |
211 |
|
|
$form->setBloc('am_exist_agrand','DF',"", "group"); |
212 |
|
|
$form->setBloc('am_exist_date','DF',"", "group"); |
213 |
|
|
$form->setBloc('am_exist_num','DF',"", "group"); |
214 |
|
|
$form->setBloc('am_exist_nb_avant','DF',"", "group"); |
215 |
|
|
$form->setBloc('am_exist_nb_apres','DF',"", "group"); |
216 |
|
|
$form->setBloc('am_empl_nb','DF',"", "group"); |
217 |
|
|
$form->setBloc('am_empl_nb','F',"", ""); |
218 |
|
|
|
219 |
|
|
$form->setBloc('am_tente_nb','D',_("Nombre maximum d’emplacements reserves aux :"), "alignForm"); |
220 |
|
|
$form->setBloc('am_mobil_nb','F',"", ""); |
221 |
|
|
|
222 |
|
|
$form->setBloc('am_pers_nb','DF',"", "alignFormSpec group"); |
223 |
|
|
|
224 |
|
|
$form->setBloc('am_empl_hll_nb','D',_("Implantation d’habitations legeres de loisirs (HLL) :"), "alignFormSpec"); |
225 |
|
|
$form->setBloc('am_empl_hll_nb','DF',"", "group"); |
226 |
|
|
$form->setBloc('am_hll_shon','DF',"", "group"); |
227 |
|
|
$form->setBloc('am_periode_exploit','DF',"", "group"); |
228 |
|
|
$form->setBloc('am_periode_exploit','F',"", ""); |
229 |
|
|
|
230 |
nhaye |
2116 |
$form->setBloc('am_coupe_bois','D',_("Declaration de coupe et/ou abattage d’arbres :"),"col_12 cerfasubtitle"); |
231 |
vpihour |
2123 |
|
232 |
|
|
$form->setBloc('am_coupe_bois','D',_("Courte description du lieu :"), "cerfasubtitle alignForm"); |
233 |
|
|
$form->setBloc('am_coupe_align','F',"", ""); |
234 |
|
|
|
235 |
|
|
$form->setBloc('am_coupe_ess','D',_("Nature du boisement :"),"col_12 cerfasubtitle alignForm"); |
236 |
nhaye |
2116 |
$form->setBloc('am_coupe_autr','F'); |
237 |
|
|
$form->setBloc('am_coupe_autr','F'); |
238 |
|
|
$form->setBloc('am_coupe_autr','F'); |
239 |
nhaye |
1258 |
|
240 |
|
|
|
241 |
nhaye |
2116 |
$form->setFieldset('am_coupe_autr','F',''); |
242 |
|
|
|
243 |
|
|
$form->setBloc('am_coupe_autr','F'); |
244 |
nhaye |
1258 |
$form->setFieldset('am_coupe_autr','F',''); |
245 |
|
|
$form->setBloc('am_coupe_autr','F'); |
246 |
nhaye |
2116 |
// Fin amménager |
247 |
|
|
// Construire |
248 |
nhaye |
1258 |
$form->setBloc('co_archi_recours','D',"","col_12"); |
249 |
|
|
$form->setFieldset('co_archi_recours','D' |
250 |
nhaye |
2116 |
,_("Construire"), "startClosed"); |
251 |
|
|
$form->setBloc('co_archi_recours','D', "","col_12"); |
252 |
|
|
$form->setFieldset('co_archi_recours','D' |
253 |
vpihour |
2123 |
,_("Projet construction"), "startClosed alignFormSpec"); |
254 |
|
|
|
255 |
|
|
$form->setBloc('co_archi_recours','DF',_("Architecte"), "group"); |
256 |
|
|
$form->setBloc('architecte','DF',"", "group"); |
257 |
|
|
|
258 |
|
|
$form->setBloc('co_cstr_nouv','DF',_("Nature du projet"), "group"); |
259 |
|
|
$form->setBloc('co_cstr_exist','DF',"", "group"); |
260 |
|
|
$form->setBloc('co_div_terr','DF',"", "group"); |
261 |
|
|
$form->setBloc('co_cloture','DF',"", "group"); |
262 |
|
|
$form->setBloc('co_projet_desc','DF',"", "group"); |
263 |
|
|
$form->setBloc('co_elec_tension','DF',"", "group"); |
264 |
nhaye |
2116 |
$form->setFieldset('co_elec_tension','F',''); |
265 |
|
|
$form->setFieldset('co_anx_pisc','D' |
266 |
|
|
,_("Complement construction"), "startClosed"); |
267 |
vpihour |
2123 |
|
268 |
|
|
$form->setBloc('co_anx_pisc','D',"", "alignForm"); |
269 |
|
|
$form->setBloc('co_anx_autr','F',"", ""); |
270 |
|
|
$form->setBloc('co_anx_autr_desc','DF',"", "alignFormSpec group"); |
271 |
|
|
|
272 |
|
|
$form->setBloc('co_tot_log_nb','D',"", "alignForm"); |
273 |
|
|
$form->setBloc('co_tot_coll_nb','F',"", ""); |
274 |
|
|
|
275 |
|
|
$form->setBloc('co_mais_piece_nb','D',"", "alignForm"); |
276 |
|
|
$form->setBloc('co_mais_niv_nb','F',"", ""); |
277 |
|
|
|
278 |
nhaye |
2116 |
$form->setBloc('co_fin_lls_nb','D', _("Repartition du nombre total de logement crees par type de financement :"),"col_12"); |
279 |
vpihour |
2123 |
$form->setBloc('co_fin_lls_nb','D',"", "alignForm"); |
280 |
|
|
$form->setBloc('co_fin_autr_nb','F',"", ""); |
281 |
|
|
|
282 |
|
|
$form->setBloc('co_fin_autr_desc','DF',"", "alignFormSpec group"); |
283 |
|
|
$form->setBloc('co_mais_contrat_ind','DF',"", "alignFormSpec group"); |
284 |
nhaye |
2116 |
$form->setBloc('co_mais_contrat_ind','F'); |
285 |
vpihour |
2123 |
|
286 |
|
|
$form->setBloc('co_uti_pers','D',_("Mode d'utilisation principale des logements :"), "col_12"); |
287 |
|
|
$form->setBloc('co_uti_pers','D', "", "alignForm"); |
288 |
|
|
$form->setBloc('co_uti_loc','F',"", ""); |
289 |
|
|
$form->setBloc('co_uti_loc','F',"", ""); |
290 |
|
|
|
291 |
|
|
$form->setBloc('co_uti_princ','D',_("S’il s’agit d’une occupation personnelle, veuillez preciser :"), "col_12"); |
292 |
|
|
$form->setBloc('co_uti_princ','D',"", "alignForm"); |
293 |
|
|
$form->setBloc('co_uti_secon','F',"", ""); |
294 |
|
|
$form->setBloc('co_uti_secon','F',"", "group"); |
295 |
|
|
|
296 |
|
|
$form->setBloc('co_resid_agees','D',_("Si le projet est un foyer ou une residence, a quel titre :"), "col_12"); |
297 |
|
|
$form->setBloc('co_resid_agees','D',"", "alignForm"); |
298 |
|
|
$form->setBloc('co_resid_hand','F',"", ""); |
299 |
|
|
$form->setBloc('co_resid_hand','F',"", "group"); |
300 |
|
|
|
301 |
|
|
$form->setBloc('co_resid_autr','D',"", "alignFormSpec"); |
302 |
|
|
$form->setBloc('co_foyer_chamb_nb','F',"", ""); |
303 |
|
|
|
304 |
|
|
$form->setBloc('co_log_1p_nb','D',_("Repartition du nombre de logements crees selon le nombre de pieces :"), "col_12"); |
305 |
|
|
$form->setBloc('co_log_1p_nb','D', "", "alignForm"); |
306 |
|
|
$form->setBloc('co_log_6p_nb','F',"", "group"); |
307 |
|
|
$form->setBloc('co_log_6p_nb','F',"", "group"); |
308 |
|
|
|
309 |
|
|
$form->setBloc('co_bat_niv_nb','DF',"", "alignFormSpec"); |
310 |
|
|
|
311 |
|
|
$form->setBloc('co_trx_exten','D',_("Indiquez si vos travaux comprennent notamment :"), "col_12"); |
312 |
|
|
$form->setBloc('co_trx_exten','D',"", "alignForm"); |
313 |
|
|
$form->setBloc('co_trx_nivsup','F',"", "group"); |
314 |
|
|
$form->setBloc('co_trx_nivsup','F',"", "group"); |
315 |
nhaye |
2116 |
$form->setFieldset('co_trx_nivsup','F',''); |
316 |
vpihour |
2123 |
|
317 |
nhaye |
2116 |
$form->setFieldset('tab_surface','D' |
318 |
vpihour |
2140 |
,_("Destinations et surfaces des constructions"), "startClosed"); |
319 |
|
|
$form->setBloc('tab_surface','DF', "","alignFormSpec group"); |
320 |
vpihour |
2123 |
|
321 |
|
|
$form->setBloc('co_sp_transport','D', _("Destination des constructions futures en cas de realisation au benefice d'un service public ou d'interet collectif :"),"col_12"); |
322 |
|
|
$form->setBloc('co_sp_transport','D', "","alignForm"); |
323 |
|
|
$form->setBloc('co_sp_culture','F', "",""); |
324 |
|
|
$form->setBloc('co_sp_culture','F', "",""); |
325 |
nhaye |
2116 |
$form->setFieldset('co_sp_culture','F',''); |
326 |
|
|
$form->setFieldset('co_demont_periode','D' |
327 |
|
|
,_("Divers construction"), "startClosed"); |
328 |
vpihour |
2123 |
$form->setBloc('co_demont_periode','DF', _("Construction periodiquement demontee et re-installee :"),"alignFormSpec"); |
329 |
|
|
|
330 |
|
|
$form->setBloc('co_statio_avt_nb','D', _("Nombre de places de stationnement"),"col_12"); |
331 |
|
|
$form->setBloc('co_statio_avt_nb','D', "","alignForm"); |
332 |
|
|
$form->setBloc('co_statio_apr_nb','F', "",""); |
333 |
|
|
$form->setBloc('co_statio_apr_nb','F', "",""); |
334 |
|
|
|
335 |
nhaye |
2116 |
$form->setBloc('co_statio_adr','D', _("Places de stationnement affectees au projet, amenagees ou reservees en dehors du terrain sur lequel est situe le projet"),"col_12"); |
336 |
vpihour |
2123 |
$form->setBloc('co_statio_adr','DF', "","alignFormSpec"); |
337 |
|
|
|
338 |
|
|
$form->setBloc('co_statio_place_nb','D', "","col_12"); |
339 |
|
|
$form->setBloc('co_statio_place_nb','D', "","alignForm"); |
340 |
|
|
$form->setBloc('co_statio_tot_shob','F', "",""); |
341 |
|
|
$form->setBloc('co_statio_tot_shob','F', "",""); |
342 |
nhaye |
2116 |
$form->setBloc('co_statio_tot_shob','F'); |
343 |
vpihour |
2123 |
$form->setBloc('co_statio_comm_cin_surf','D', _("Pour les commerces et cinemas :"),"col_12 alignFormSpec"); |
344 |
|
|
$form->setBloc('co_perf_energ','F',"", ""); |
345 |
nhaye |
2116 |
$form->setFieldset('co_perf_energ','F',''); |
346 |
|
|
$form->setBloc('co_perf_energ','F'); |
347 |
nhaye |
1258 |
|
348 |
nhaye |
2116 |
$form->setFieldset('co_perf_energ','F',''); |
349 |
nhaye |
1258 |
|
350 |
nhaye |
2116 |
$form->setBloc('co_perf_energ','F'); |
351 |
|
|
// Fin construire |
352 |
nhaye |
1258 |
|
353 |
|
|
/*Fieldset n°6 Projet necessitant demolitions */ |
354 |
|
|
$form->setBloc('dm_constr_dates','D',"","col_12"); |
355 |
|
|
$form->setFieldset('dm_constr_dates','D' |
356 |
vpihour |
2123 |
,_("Demolir"), "startClosed alignFormSpec"); |
357 |
|
|
|
358 |
|
|
$form->setBloc('dm_constr_dates','DF', "","group"); |
359 |
|
|
$form->setBloc('dm_total','DF', "","group"); |
360 |
|
|
$form->setBloc('dm_partiel','DF', "","group"); |
361 |
|
|
$form->setBloc('dm_projet_desc','DF', "","group"); |
362 |
|
|
$form->setBloc('dm_tot_log_nb','DF', "","group"); |
363 |
nhaye |
1258 |
$form->setFieldset('dm_tot_log_nb','F',''); |
364 |
|
|
|
365 |
|
|
$form->setBloc('dm_tot_log_nb','F'); |
366 |
nhaye |
1268 |
|
367 |
nhaye |
2116 |
/*Fieldset n°4 Ouverture de chantier */ |
368 |
|
|
$form->setBloc('doc_date','D',"","col_12"); |
369 |
|
|
$form->setFieldset('doc_date','D' |
370 |
vpihour |
2123 |
,_("Ouverture de chantier"), "startClosed alignFormSpec"); |
371 |
|
|
$form->setBloc('doc_date','DF', "","group"); |
372 |
|
|
$form->setBloc('doc_tot_trav','DF', "","group"); |
373 |
|
|
$form->setBloc('doc_tranche_trav','DF', "","group"); |
374 |
|
|
$form->setBloc('doc_tranche_trav_desc','DF', "","group"); |
375 |
|
|
$form->setBloc('doc_surf','DF', "","group"); |
376 |
|
|
$form->setBloc('doc_nb_log','DF', "","group"); |
377 |
|
|
$form->setBloc('doc_nb_log_indiv','DF', "","group"); |
378 |
|
|
$form->setBloc('doc_nb_log_coll','DF', "","group"); |
379 |
|
|
$form->setBloc('doc_nb_log_lls','DF', "","group"); |
380 |
|
|
$form->setBloc('doc_nb_log_aa','DF', "","group"); |
381 |
|
|
$form->setBloc('doc_nb_log_ptz','DF', "","group"); |
382 |
|
|
$form->setBloc('doc_nb_log_autre','DF', "","group"); |
383 |
nhaye |
2116 |
$form->setFieldset('doc_nb_log_autre','F',''); |
384 |
|
|
$form->setBloc('doc_nb_log_autre','F'); |
385 |
nhaye |
1268 |
|
386 |
nhaye |
2116 |
/*Fieldset n°4 Achèvement des travaux */ |
387 |
|
|
$form->setBloc('daact_date','D',"","col_12"); |
388 |
|
|
$form->setFieldset('daact_date','D' |
389 |
vpihour |
2123 |
,_("Achevement des travaux") , "startClosed alignFormSpec"); |
390 |
|
|
$form->setBloc('daact_date','DF', "","group"); |
391 |
|
|
$form->setBloc('daact_date_chgmt_dest','DF', "","group"); |
392 |
|
|
$form->setBloc('daact_tot_trav','DF', "","group"); |
393 |
|
|
$form->setBloc('daact_tranche_trav','DF', "","group"); |
394 |
|
|
$form->setBloc('daact_tranche_trav_desc','DF', "","group"); |
395 |
|
|
$form->setBloc('daact_surf','DF', "","group"); |
396 |
|
|
$form->setBloc('daact_nb_log','DF', "","group"); |
397 |
|
|
$form->setBloc('daact_nb_log_indiv','DF', "","group"); |
398 |
|
|
$form->setBloc('daact_nb_log_coll','DF', "","group"); |
399 |
|
|
$form->setBloc('daact_nb_log_lls','DF', "","group"); |
400 |
|
|
$form->setBloc('daact_nb_log_aa','DF', "","group"); |
401 |
|
|
$form->setBloc('daact_nb_log_ptz','DF', "","group"); |
402 |
|
|
$form->setBloc('daact_nb_log_autre','DF', "","group"); |
403 |
nhaye |
2116 |
$form->setFieldset('daact_nb_log_autre','F',''); |
404 |
|
|
$form->setBloc('daact_nb_log_autre','F'); |
405 |
nhaye |
1268 |
|
406 |
nhaye |
2116 |
$form->setBloc('code_cnil','D',"","col_12"); |
407 |
|
|
$form->setFieldset('code_cnil','D' |
408 |
vpihour |
2123 |
,_("cnil (opposition à l’utilisation des informations du formulaire à des fins commerciales)") , "startClosed alignFormSpec"); |
409 |
|
|
$form->setBloc('code_cnil','DF', "","group"); |
410 |
nhaye |
2116 |
$form->setFieldset('code_cnil','F',''); |
411 |
|
|
$form->setBloc('code_cnil','F'); |
412 |
nhaye |
1268 |
|
413 |
nhaye |
2116 |
$form->setBloc('tax_surf_tot','D',"","col_12"); |
414 |
|
|
$form->setFieldset('tax_surf_tot','D' |
415 |
vpihour |
2123 |
,_("Declaration des elements necessaires au calcul des impositions"), "startClosed alignFormSpec"); |
416 |
|
|
|
417 |
|
|
$form->setBloc('tax_surf_tot','DF', _("Renseignement"),"group"); |
418 |
|
|
$form->setBloc('tax_surf','DF', "","group"); |
419 |
|
|
$form->setBloc('tax_surf_suppr_mod','DF', "","group"); |
420 |
|
|
|
421 |
|
|
$form->setBloc('tab_tax_su_princ','DF', _("Creation de locaux destines a l’habitation :"),"group"); |
422 |
|
|
$form->setBloc('tab_tax_su_heber','DF', "","group"); |
423 |
|
|
$form->setBloc('tab_tax_su_secon','DF', "","group"); |
424 |
|
|
$form->setBloc('tab_tax_su_tot','DF', "","group"); |
425 |
|
|
$form->setBloc('tax_ext_pret','DF', "","group"); |
426 |
|
|
$form->setBloc('tax_ext_desc','DF', "","group"); |
427 |
|
|
$form->setBloc('tax_surf_tax_exist_cons','DF', "","group"); |
428 |
|
|
$form->setBloc('tax_log_exist_nb','DF', "","group"); |
429 |
nhaye |
1268 |
|
430 |
vpihour |
2123 |
$form->setBloc('tax_comm_nb','DF', _("Creation ou extension de locaux non destines a l'habitation :"),"group"); |
431 |
|
|
$form->setBloc('tab_tax_su_non_habit_surf','DF', "","group"); |
432 |
|
|
$form->setBloc('tab_tax_am','DF', "","group"); |
433 |
|
|
|
434 |
|
|
$form->setBloc('tax_trx_presc_ppr','DF', _("Cas particuliers"),"group"); |
435 |
|
|
$form->setBloc('tax_monu_hist','DF', "","group"); |
436 |
nhaye |
2116 |
|
437 |
vpihour |
2123 |
$form->setBloc('vsd_surf_planch_smd','DF', _("Versement pour sous-densite (VSD)"),"group"); |
438 |
|
|
$form->setBloc('vsd_unit_fonc_sup','DF', "","group"); |
439 |
|
|
$form->setBloc('vsd_unit_fonc_constr_sup','DF', "","group"); |
440 |
|
|
$form->setBloc('vsd_val_terr','DF', "","group"); |
441 |
|
|
$form->setBloc('vsd_const_sxist_non_dem_surf','DF', "","group"); |
442 |
|
|
$form->setBloc('vsd_rescr_fisc','DF', "","group"); |
443 |
|
|
|
444 |
|
|
$form->setBloc('pld_val_terr','DF', _("Plafond legal de densite (PLD)"),"group"); |
445 |
|
|
$form->setBloc('pld_const_exist_dem','DF', "","group"); |
446 |
|
|
$form->setBloc('pld_const_exist_dem_surf','DF', "","group"); |
447 |
nhaye |
1268 |
$form->setFieldset('pld_const_exist_dem_surf','F',''); |
448 |
|
|
|
449 |
|
|
$form->setBloc('pld_const_exist_dem_surf','F'); |
450 |
nhaye |
1258 |
} |
451 |
vpihour |
2113 |
|
452 |
|
|
function setLib(&$form,$maj) { |
453 |
|
|
parent::setLib($form,$maj); |
454 |
|
|
//libelle des champs |
455 |
|
|
$form->setLib('architecte', _("coordonnees de l'architecte")); |
456 |
|
|
} |
457 |
vpihour |
1249 |
}// fin classe |
458 |
nhaye |
2116 |
?> |