New file |
0,0 → 1,37 |
<?php |
class recherchenom 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() |
{ |
/*balise:NOM_SELECTION*/ |
$un_macro_element = $this->macroElementFactory('NOM_RECHERCHE', $this->dblock); |
$un_macro_element->construire(); |
} |
|
} |
?> |