Subversion Repositories eFlore/Archives.eflore-consultation-v2

Compare Revisions

Ignore whitespace Rev 35 → Rev 36

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