1 |
<?php |
2 |
/* |
3 |
* @package openfoncier |
4 |
* @version SVN : $Id$ |
5 |
*/ |
6 |
|
7 |
require_once ("../obj/demande.class.php"); |
8 |
|
9 |
class demande_dossier_existant extends demande { |
10 |
|
11 |
function demande_dossier_existant($id,&$db,$debug) { |
12 |
$this->demande($id,$db,$debug); |
13 |
}// fin constructeur |
14 |
|
15 |
/** |
16 |
* Surcharge du bouton retour afin de retourner sur le dashboard |
17 |
*/ |
18 |
function retour($premier = 0, $recherche = "", $tricol = "") { |
19 |
|
20 |
echo "\n<a class=\"retour\" "; |
21 |
echo "href=\"".$this->f->url_dashboard; |
22 |
// |
23 |
echo "\""; |
24 |
echo ">"; |
25 |
// |
26 |
echo _("Retour"); |
27 |
// |
28 |
echo "</a>\n"; |
29 |
|
30 |
} |
31 |
|
32 |
} |
33 |
?> |