1 |
<?php |
2 |
//$Id$ |
3 |
//gen openMairie le 10/02/2011 20:40 |
4 |
include('../gen/sql/pgsql/parcelle.inc.php'); |
5 |
|
6 |
$table=DB_PREFIXE."parcelle left join ".DB_PREFIXE. |
7 |
"proprietaire on parcelle.proprietaire=proprietaire.proprietaire"; |
8 |
// supressiongeom |
9 |
$champAffiche=array('parcelle', |
10 |
'debut', |
11 |
'rivoli', |
12 |
'proprietaire.nom as proprietaire', |
13 |
'pos', |
14 |
'surface', |
15 |
'section' |
16 |
); |
17 |
; |
18 |
$champRecherche=array('parcelle', |
19 |
'debut', |
20 |
'rivoli', |
21 |
'proprietaire', |
22 |
'pos', |
23 |
'section'); |
24 |
|
25 |
if(file_exists ("../dyn/var.inc")) |
26 |
include ("../dyn/var.inc"); |
27 |
|
28 |
|
29 |
if($vue_parcelle==1){ |
30 |
$href[0] = array("lien" => "#", "id" => "", "lib" => "", ); |
31 |
$href[1] = array("lien" => "", "id" => "", "lib" => "", ); |
32 |
$href[2] = array("lien" => "#", "id" => "", "lib" => "", ); |
33 |
$ent .=' '._('vue'); |
34 |
$champRecherche=array('parcelle'); |
35 |
} |
36 |
|
37 |
|
38 |
?> |