Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 27 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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