Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 27 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 27 Rev 35
Line 1... Line 1...
1
<?
1
<?php
2
 
-
 
3
class default_html implements iVue {
2
class default_html implements iVue {
4
 
-
 
5
	protected $leBlock;
3
    protected $leBlock;
6
 
4
    
7
	function __construct($unBlock)
5
    function __construct($unBlock)
8
	{
6
    {
9
		$this->leBlock = $unBlock;
7
        $this->leBlock = $unBlock;
10
	}
8
    }
11
	
9
    
12
	function serialiser()
10
    function serialiser()
13
	{
11
    {
14
		$this->leBlock->afficher();
12
        $this->leBlock->afficher();
15
	}
13
    }
16
}
14
}
17
?>
15
?>
18
16