Subversion Repositories eFlore/Archives.eflore-consultation-v2

Compare Revisions

Ignore whitespace Rev 113 → Rev 114

/trunk/serveur/eflore_mv/modeles/groupes_macro_elements/recherchenomverna.php
New file
0,0 → 1,32
<?php
class recherchenomverna extends groupeMacroElement {
function __construct($une_connexion)
{
parent::__construct($une_connexion);
}
function construire()
{
$this->dblock = new blockdedonnees('FICHE_LISTE_NOMS_VERNA');
if (array_key_exists('radical', $_REQUEST)) {
$this->dblock->ajouterDonnee('radical', $_REQUEST['radical']);
}
$this->construireContexte();
$this->ajouterMacroElement();
}
function construireContexte()
{
}
function ajouterMacroElement()
{
$un_macro_element = $this->macroElementFactory('VERNACULAIRE_RECHERCHE', $this->dblock);
$un_macro_element->construire();
}
}
?>