1 |
<?php |
2 |
/** |
3 |
* Ce script a pour objet de récupérer la liste des pétitionnaires |
4 |
* correspondants aux critères de recherche |
5 |
* |
6 |
* @package openfoncier |
7 |
* @version SVN : $Id: afficher_synthese_demandeur.view.php 1514 2013-03-19 18:29:43Z fmichon $ |
8 |
*/ |
9 |
|
10 |
//Données |
11 |
$idx = (isset($_GET['idx']) ? $_GET['idx'] : "]" ); |
12 |
$obj = (isset($_GET['obj']) ? $_GET['obj'] : "" ); |
13 |
|
14 |
require_once "../obj/utils.class.php"; |
15 |
require_once "../obj/om_formulaire.class.php"; |
16 |
require_once "../obj/".$obj.".class.php"; |
17 |
|
18 |
$f = new utils("nohtml"); |
19 |
$f->isAccredited(array($obj,$obj."consulter",), "OR"); |
20 |
$f->disableLog(); |
21 |
|
22 |
// Affichage des données |
23 |
$obj = new $obj($idx,$f->db,false); |
24 |
$obj->afficherSynthese(); |
25 |
|
26 |
|
27 |
$obj->__destruct(); |
28 |
|
29 |
?> |