20-11-2008, 11:31 AM
Bonjour,
Voici ma classe logRechercheForm qui étend form (pour toi Plume spéciale cace dédi):
Voici ma classe logRechercheForm qui étend form (pour toi Plume spéciale cace dédi):
Code PHP :
<?php
class logRechercheForm extends form
{
private $champ;
private $chaine;
private $act;
public function __construct()
{
$choix = array(
"Commentaire" => "Log_Commentaire",
);
form::setForm("?pg=recherchelogs","post", "", "recherchelogs");
$this->chaine = form::addElement("text","chaine","","Entrez la chaine à rechercher","string");
$this->champ = form::addElement("combobox","champ",$choix,"Champ concerné","int");
$this->act = form::addElement("hidden","act","1","","int");
}
public function getChamp()
{
return $this->champ;
}
public function getChaine()
{
return $this->chaine;
}
public function getAct()
{
return $this->act;
}
public function setFormValues(){
$this->getChaine()->setFormValue($_POST[$this->getName()]['chaine']);
$this->getChamp()->setFormValue($_POST[$this->getName()]['champ']);
$this->getAct()->setFormValue($_POST[$this->getName()]['act']);
}
}
?>
Et oxman, tu ne m'as toujours pas répondu pour me dire ce que tu entendais par indépendance des couches !
A bientôt !