Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

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

<?php
global $gBlock;

class identite_html implements iVue {
    
    protected $leBlock;
    
    function __construct($unBlock)
    {
        $this->leBlock = $unBlock;
    }
    
    function serialiser()
    {
        $gBlock = $this->leBlock;
        $retour = '';
        $retour .= '<html>';
        $retour .= '<head>';
        $retour .= '</head>';
        $retour .= '<body>';
        $retour .= '<h3>'.'coucou'.'</h3>';
        $retour .= $gBlock->afficher();
        $retour .= '</body>';
        $retour .= '</html>';
    }
}
?>