Subversion Repositories eFlore/Archives.eflore-consultation-v2

Compare Revisions

Ignore whitespace Rev 26 → Rev 27

/trunk/serveur/eflore_mv/vues/default_html.php
New file
0,0 → 1,17
<?
 
class default_html implements iVue {
 
protected $leBlock;
 
function __construct($unBlock)
{
$this->leBlock = $unBlock;
}
function serialiser()
{
$this->leBlock->afficher();
}
}
?>