1 |
<?php |
2 |
//$Id: contrainte.form.inc.php 4692 2015-04-30 13:54:08Z tbenita $ |
3 |
//gen openMairie le 03/01/2014 16:53 |
4 |
|
5 |
include('../gen/sql/pgsql/contrainte.form.inc.php'); |
6 |
|
7 |
$champs=array( |
8 |
"contrainte", |
9 |
// Contrainte |
10 |
"libelle", |
11 |
"nature", |
12 |
"reference", |
13 |
"numero", |
14 |
"no_ordre", |
15 |
// Catégorie |
16 |
"groupe", |
17 |
"sousgroupe", |
18 |
// Détail |
19 |
"texte", |
20 |
"service_consulte", |
21 |
"om_collectivite", |
22 |
"om_validite_debut", |
23 |
"om_validite_fin" |
24 |
); |
25 |
|
26 |
// Ajout des tableaux des données pour les select |
27 |
$nature = array( |
28 |
array("PLU", "POS", "CC", "RNU"), |
29 |
array(_("PLU"), _("POS"), _("CC"), _("RNU")), |
30 |
); |
31 |
|
32 |
?> |