1 |
<?php |
2 |
//$Id$ |
3 |
//gen openMairie le 21/09/2012 12:42 |
4 |
|
5 |
$DEBUG=0; |
6 |
$serie=15; |
7 |
$ico="../img/ico_application.png"; |
8 |
$ent = _("application")." -> "._("service"); |
9 |
if(!isset($premier)) $premier=''; |
10 |
if(!isset($recherche1)) $recherche1=''; |
11 |
if(!isset($tricolsf)) $tricolsf=''; |
12 |
if(!isset($premiersf)) $premiersf=''; |
13 |
if(!isset($selection)) $selection=''; |
14 |
if(!isset($retourformulaire)) $retourformulaire=''; |
15 |
if (isset($idx) && $idx != ']' && trim($idx) != '') { |
16 |
$ent .= "-> ".$idx." "; |
17 |
} |
18 |
if (isset($idz) && trim($idz) != '') { |
19 |
$ent .= " ".strtoupper($idz)." "; |
20 |
} |
21 |
// FROM |
22 |
$table = DB_PREFIXE."service"; |
23 |
// SELECT |
24 |
$champAffiche = array( |
25 |
'service.service as "'._("service").'"', |
26 |
'service.libelle as "'._("libelle").'"', |
27 |
'service.adresse as "'._("adresse").'"', |
28 |
'service.adresse2 as "'._("adresse2").'"', |
29 |
'service.cp as "'._("cp").'"', |
30 |
'service.ville as "'._("ville").'"', |
31 |
'service.email as "'._("email").'"', |
32 |
'service.delai as "'._("delai").'"', |
33 |
); |
34 |
// |
35 |
$champNonAffiche = array( |
36 |
); |
37 |
// |
38 |
$champRecherche = array( |
39 |
'service.service as "'._("service").'"', |
40 |
'service.libelle as "'._("libelle").'"', |
41 |
'service.adresse as "'._("adresse").'"', |
42 |
'service.adresse2 as "'._("adresse2").'"', |
43 |
'service.cp as "'._("cp").'"', |
44 |
'service.ville as "'._("ville").'"', |
45 |
'service.email as "'._("email").'"', |
46 |
'service.delai as "'._("delai").'"', |
47 |
); |
48 |
$tri="ORDER BY service.libelle ASC NULLS LAST"; |
49 |
$edition="service"; |
50 |
$selection=''; |
51 |
$sousformulaire = array( |
52 |
'consultation',); |
53 |
?> |