Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 170 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
114 jpm 1
<?php
2
class recherchenomverna extends groupeMacroElement {
3
    function __construct($une_connexion)
4
    {
5
        parent::__construct($une_connexion);
6
    }
7
 
8
    function construire()
9
    {
10
        $this->dblock = new blockdedonnees('FICHE_LISTE_NOMS_VERNA');
11
 
12
        if (array_key_exists('radical', $_REQUEST)) {
13
            $this->dblock->ajouterDonnee('radical', $_REQUEST['radical']);
14
        }
15
 
16
        $this->construireContexte();
17
        $this->ajouterMacroElement();
18
    }
19
 
20
    function construireContexte()
21
    {
22
 
23
    }
24
 
25
    function ajouterMacroElement()
26
    {
27
        $un_macro_element = $this->macroElementFactory('VERNACULAIRE_RECHERCHE', $this->dblock);
28
        $un_macro_element->construire();
29
    }
30
 
31
}
32
?>