Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?

global $gBlock;

class identite_html implements iVue {

        protected $leBlock;

        function __construct($unBlock)
        {
                $this->leBlock = $unBlock;
        }
        
        function serialiser()
        {
                $gBlock = $this->leBlock;
?>      
<HTML>
<HEAD>
</HEAD>
<BODY>
<H3>coucou</H3>
<? 
        $gBlock->afficher();
?>
</BODY>
</HTML>                 
<?              
        }
}
?>