Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 27 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
28 jpm 1
<?php
2
class selectionnoms extends groupeMacroElement {
3
    function __construct($aConn)
4
    {
5
        parent::__construct($aConn);
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->buildContext();
21
        $this->addMacroElement();
22
    }
23
 
24
    function buildContext()
25
    {
26
 
27
    }
28
 
29
    function addMacroElement()
30
    {
31
    /*balise:NOM_SELECTION*/
32
    $aMacroElement = $this->macroElementFactory('NOM_SELECTION',$this->dblock);
33
    $aMacroElement->construire();
34
    }
35
 
36
}
37
?>