Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
177 jp_milcent 1
<?php
2
class infonomlatin 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_NOM_LATIN');
11
 
12
        // Numéro nomenclatural
13
        if (array_key_exists('nn', $_REQUEST)) {
14
            $this->dblock->ajouterDonnee('nn', $_REQUEST['nn']);
15
        }
16
 
17
        $this->construireContexte();
18
        $this->ajouterMacroElement();
19
    }
20
 
21
    function construireContexte()
22
    {
23
 
24
    }
25
 
26
    function ajouterMacroElement()
27
    {
28
        $un_macro_element = $this->macroElementFactory('NOM_LATIN', $this->dblock);
29
        $un_macro_element->construire();
30
        //echo '<pre>'.print_r($this->dblock, true).'</pre>';
31
    }
32
 
33
}
34
?>