1 |
<?php |
2 |
//$Id$ |
3 |
//gen openMairie le 10/02/2011 20:31 |
4 |
require_once ("../gen/obj/civilite.class.php"); |
5 |
|
6 |
class civilite extends civilite_gen { |
7 |
|
8 |
function civilite($id,&$db,$debug) { |
9 |
$this->constructeur($id,$db,$debug); |
10 |
}// fin constructeur |
11 |
|
12 |
function verifier($val = array(), &$db = NULL, $DEBUG = false) { |
13 |
$this->correct=true; |
14 |
} |
15 |
|
16 |
|
17 |
function setTaille(&$form,$maj){ |
18 |
$form->setTaille('civilite', 20); |
19 |
} |
20 |
|
21 |
function setMax(&$form,$maj){ |
22 |
$form->setMax('civilite', 20); |
23 |
} |
24 |
}// fin classe |
25 |
?> |