Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?phpclass recherchenomlatin extends groupeMacroElement {function __construct($une_connexion){parent::__construct($une_connexion);}function construire(){$this->dblock = new blockdedonnees('FICHE_LISTE_NOMS');if (array_key_exists('radical', $_REQUEST)) {$this->dblock->ajouterDonnee('radical', $_REQUEST['radical']);}if (array_key_exists('rang',$_REQUEST)) {$this->dblock->ajouterDonnee('rang', $_REQUEST['rang']);}$this->construireContexte();$this->ajouterMacroElement();}function construireContexte(){}function ajouterMacroElement(){$un_macro_element = $this->macroElementFactory('NOM_RECHERCHE', $this->dblock);$un_macro_element->construire();}}?>