22 lines
560 B
PHTML
22 lines
560 B
PHTML
<div>
|
|
<?php foreach($this->champs as $champ){
|
|
switch ($champ['type']) {
|
|
case 'select':
|
|
echo $this->Select($champ['name'], $champ['libelle'], $champ['parametres']);
|
|
break;
|
|
case 'interval':
|
|
echo $this->Interval($champ['name'], $champ['libelle']);
|
|
break;
|
|
case 'text':
|
|
echo $this->Text($champ['name'], $champ['libelle']);
|
|
break;
|
|
case 'textarea':
|
|
echo $this->Textarea($champ['name'], $champ['libelle']);
|
|
break;
|
|
}
|
|
} ?>
|
|
</div>
|
|
|
|
<div style="text-align:right;">
|
|
<a href="">Réinitialiser les critères juridiques</a>
|
|
</div>
|