Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 35 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35 Rev 36
Line 1... Line 1...
1
<?php
1
<?php
2
class default_html implements iVue {
2
class default_html implements iVue {
-
 
3
    
3
    protected $leBlock;
4
    protected $le_block;
Line 4... Line 5...
4
    
5
    
5
    function __construct($unBlock)
6
    function __construct($un_block)
6
    {
7
    {
7
        $this->leBlock = $unBlock;
8
        $this->le_block = $un_block;
Line 8... Line 9...
8
    }
9
    }
9
    
10
    
10
    function serialiser()
11
    function serialiser()
11
    {
12
    {
12
        $this->leBlock->afficher();
13
        $this->le_block->afficher();
13
    }
14
    }
14
}
15
}