Blame | Last modification | View Log | RSS feed
<?phpclass rechercheclassification extends groupeMacroElement {function __construct($une_connexion){parent::__construct($une_connexion);}function construire(){$this->dblock = new blockdedonnees('FICHE_LISTE_TAXONS');// Numéro de version du projetif (array_key_exists('nvp', $_REQUEST)) {$this->dblock->ajouterDonnee('nvp', $_REQUEST['nvp']);}// Rangif (array_key_exists('rg', $_REQUEST)) {$this->dblock->ajouterDonnee('rg', $_REQUEST['rg']);}// Ordreif (array_key_exists('nt', $_REQUEST)) {$this->dblock->ajouterDonnee('nt', $_REQUEST['nt']);}$this->construireContexte();$this->ajouterMacroElement();}function construireContexte(){}function ajouterMacroElement(){$un_macro_element = $this->macroElementFactory('TAXON_RECHERCHE_CLASSIFICATION', $this->dblock);$un_macro_element->construireParRecursivite(0);//echo '<pre>'.print_r($this->dblock, true).'</pre>';}}?>