Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 114 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 114 Rev 170
1
<?php
1
<?php
2
class recherchenomverna extends groupeMacroElement {
2
class recherchenomverna extends groupeMacroElement {
3
    function __construct($une_connexion)
3
    function __construct($une_connexion)
4
    {
4
    {
5
        parent::__construct($une_connexion);
5
        parent::__construct($une_connexion);
6
    }
6
    }
7
    
7
    
8
    function construire()
8
    function construire()
9
    {
9
    {
10
        $this->dblock = new blockdedonnees('FICHE_LISTE_NOMS_VERNA');
10
        $this->dblock = new blockdedonnees('FICHE_LISTE_NOMS_VERNA');
-
 
11
        
11
        
12
        // Radical à rechercher
12
        if (array_key_exists('radical', $_REQUEST)) {
13
        if (array_key_exists('radical', $_REQUEST)) {
13
            $this->dblock->ajouterDonnee('radical', $_REQUEST['radical']);
14
            $this->dblock->ajouterDonnee('radical', $_REQUEST['radical']);
14
        }
15
        }
-
 
16
        
-
 
17
        // Numéro de version du projet
-
 
18
        if (array_key_exists('nvp', $_REQUEST)) {
-
 
19
            $this->dblock->ajouterDonnee('nvp', $_REQUEST['nvp']);
-
 
20
        }
15
        
21
        
16
        $this->construireContexte();
22
        $this->construireContexte();
17
        $this->ajouterMacroElement();
23
        $this->ajouterMacroElement();
18
    }
24
    }
19
    
25
    
20
    function construireContexte()
26
    function construireContexte()
21
    {
27
    {
22
        
28
        
23
    }
29
    }
24
    
30
    
25
    function ajouterMacroElement()
31
    function ajouterMacroElement()
26
    {
32
    {
27
        $un_macro_element = $this->macroElementFactory('VERNACULAIRE_RECHERCHE', $this->dblock);
33
        $un_macro_element = $this->macroElementFactory('VERNACULAIRE_RECHERCHE', $this->dblock);
28
        $un_macro_element->construire();
34
        $un_macro_element->construire();
29
    }
35
    }
30
    
36
    
31
}
37
}
32
?>
38
?>