Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 28 | Go to most recent revision | Show entire file | Ignore 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 10... Line 10...
10
        $this->dblock= new blockdedonnees('FICHE_LISTE_NOMS');
10
        $this->dblock = new blockdedonnees('FICHE_LISTE_NOMS');
11
        
11
        
12
        if (array_key_exists('radical',$_REQUEST)) {
12
        if (array_key_exists('radical', $_REQUEST)) {
Line 13... Line 13...
13
            $this->dblock->ajouterDonnee('radical',$_REQUEST['radical']);
13
            $this->dblock->ajouterDonnee('radical', $_REQUEST['radical']);
14
        }
14
        }
15
        
15
        
Line 16... Line 16...
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']);
18
        }
18
        }
Line 19... Line 19...
19
        
19
        
20
        $this->buildContext();
20
        $this->construireContexte();
Line 21... Line 21...
21
        $this->addMacroElement();
21
        $this->ajouterMacroElement();
Line 22... Line 22...
22
    } 
22
    }
23
    
23
    
24
    function buildContext()
24
    function construireContexte()
25
    {
25
    {
26
        
26
        
27
    }
27
    }
Line 28... Line 28...
28
    
28
    
29
    function addMacroElement()
29
    function ajouterMacroElement()
30
    {
30
    {