Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

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

Rev Author Line No. Line
112 jpm 1
<?php
2
class recherchenomlatin 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');
11
 
12
        if (array_key_exists('radical', $_REQUEST)) {
13
            $this->dblock->ajouterDonnee('radical', $_REQUEST['radical']);
14
        }
15
 
16
        if (array_key_exists('rang',$_REQUEST)) {
17
            $this->dblock->ajouterDonnee('rang', $_REQUEST['rang']);
18
        }
19
 
20
        $this->construireContexte();
21
        $this->ajouterMacroElement();
22
    }
23
 
24
    function construireContexte()
25
    {
26
 
27
    }
28
 
29
    function ajouterMacroElement()
30
    {
31
        $un_macro_element = $this->macroElementFactory('NOM_RECHERCHE', $this->dblock);
32
        $un_macro_element->construire();
33
    }
34
 
35
}
36
?>