1 |
mbroquet |
3730 |
<?php |
2 |
|
|
//$Id$ |
3 |
|
|
//gen openMairie le 14/04/2015 22:06 |
4 |
|
|
|
5 |
|
|
$import= "Insertion dans la table om_collectivite voir rec/import_utilisateur.inc"; |
6 |
|
|
$table= DB_PREFIXE."om_collectivite"; |
7 |
|
|
$id='om_collectivite'; // numerotation automatique |
8 |
|
|
$verrou=1;// =0 pas de mise a jour de la base / =1 mise a jour |
9 |
|
|
$fic_rejet=1; // =0 pas de fichier pour relance / =1 fichier relance traitement |
10 |
|
|
$ligne1=1;// = 1 : 1ere ligne contient nom des champs / o sinon |
11 |
|
|
/** |
12 |
|
|
* |
13 |
|
|
*/ |
14 |
|
|
$fields = array( |
15 |
|
|
"om_collectivite" => array( |
16 |
|
|
"notnull" => "1", |
17 |
|
|
"type" => "int", |
18 |
|
|
"len" => "11", |
19 |
|
|
), |
20 |
|
|
"libelle" => array( |
21 |
|
|
"notnull" => "1", |
22 |
|
|
"type" => "string", |
23 |
|
|
"len" => "100", |
24 |
|
|
), |
25 |
|
|
"niveau" => array( |
26 |
|
|
"notnull" => "1", |
27 |
|
|
"type" => "string", |
28 |
|
|
"len" => "1", |
29 |
|
|
), |
30 |
|
|
); |
31 |
|
|
?> |