Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 28 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 28 Rev 36
Line 1... Line 1...
1
<?php
1
<?php
2
class selectionnoms extends groupeMacroElement {
2
class selectionnoms extends groupeMacroElement {
3
    function __construct($aConn)
3
    function __construct($une_connexion)
4
    {
4
    {
5
        parent::__construct($aConn);
5
        parent::__construct($une_connexion);
6
    }
6
    }
Line 7... Line 7...
7
    
7
    
8
    function construire()
8
    function construire()
9
    {
9
    {
Line 15... Line 15...
15
        
15
        
16
        if (array_key_exists('rang',$_REQUEST)) {
16
        if (array_key_exists('rang',$_REQUEST)) {
17
            $this->dblock->ajouterDonnee('rang',$_REQUEST['rang']);
17
            $this->dblock->ajouterDonnee('rang', $_REQUEST['rang']);
Line 18... Line 18...
18
        }
18
        }
19
        
19
        
20
        $this->buildContext();
20
        $this->construireContexte();
Line 21... Line 21...
21
        $this->addMacroElement();
21
        $this->ajouterMacroElement();
22
    } 
22
    }
Line 23... Line 23...
23
    
23
    
Line 24... Line 24...
24
    function buildContext()
24
    function construireContexte()
25
    {
25
    {
26
        
26
        
27
    }
27
    }
28
    
28
    
29
    function addMacroElement()
29
    function ajouterMacroElement()
Line 30... Line 30...
30
    {
30
    {
31
    /*balise:NOM_SELECTION*/
31
        /*balise:NOM_SELECTION*/
32
    $aMacroElement = $this->macroElementFactory('NOM_SELECTION',$this->dblock);
32
        $un_macro_element = $this->macroElementFactory('NOM_SELECTION', $this->dblock);