Subversion Repositories eFlore/Archives.eflore-consultation-v2

Compare Revisions

Ignore whitespace Rev 26 → Rev 27

/trunk/serveur/eflore_mv/vues/identite_html.php
New file
0,0 → 1,31
<?
 
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>
<?
}
}
?>