Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

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

Rev 27 Rev 32
Line 1... Line 1...
1
<?
1
<?php
Line 2... Line 2...
2
 
2
 
Line 3... Line 3...
3
require_once 'eflore_macro_element.class.php';
3
require_once 'eflore_macro_element.class.php';
Line 16... Line 16...
16
   
16
   
17
   function contruire()
17
    function contruire()
Line 18... Line 18...
18
   {
18
    {
-
 
19
        
19
   
20
    }
20
   }
21
    
21
    function recupererBlockDeDonnees()
22
    function recupererBlockDeDonnees()
22
    {
23
    {
Line 23... Line -...
23
        return $this->dblock;
-
 
24
    }
-
 
25
   
-
 
26
 
24
        return $this->dblock;
27
    
25
    }
28
    
-
 
29
    function macroElementFactory($macroElementName,$parentDataBlock)
-
 
30
    {
26
    
31
        
27
    function macroElementFactory($macroElementName,$parentDataBlock)
32
        
28
    {
33
        require_once EFSE_CHEMIN_MV_MACRO.$macroElementName.'.php';
29
        require_once EFSE_CHEMIN_MV_MACRO.$macroElementName.'.php';
34
        $aMacroElement = new $macroElementName($this->connexion,$parentDataBlock,$macroElementName);
-
 
35
        return $aMacroElement;
30
        $aMacroElement = new $macroElementName($this->connexion,$parentDataBlock,$macroElementName);
36
    }
-
 
37
 
31
        return $aMacroElement;
38
}
32
    }