Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 27 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
35 jpm 1
<?php
27 jpm 2
global $gBlock;
3
 
4
class identite_html implements iVue {
35 jpm 5
 
6
    protected $leBlock;
7
 
8
    function __construct($unBlock)
9
    {
10
        $this->leBlock = $unBlock;
11
    }
12
 
13
    function serialiser()
14
    {
15
        $gBlock = $this->leBlock;
16
        $retour = '';
17
        $retour .= '<html>';
18
        $retour .= '<head>';
19
        $retour .= '</head>';
20
        $retour .= '<body>';
21
        $retour .= '<h3>'.'coucou'.'</h3>';
22
        $retour .= $gBlock->afficher();
23
        $retour .= '</body>';
24
        $retour .= '</html>';
25
    }
27 jpm 26
}
35 jpm 27
?>