Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
27 jpm 1
<?
2
 
3
		class selectionnoms extends groupeMacroElement {
4
 
5
 
6
			function __construct($aConn)
7
			{
8
				parent::__construct($aConn);
9
			}
10
 
11
			function construire()
12
			{
13
				$this->dblock= new blockdedonnees('FICHE_LISTE_NOMS');
14
 
15
	   		if (array_key_exists('radical',$_REQUEST)) { $this->dblock->ajouterDonnee('radical',$_REQUEST['radical']); }
16
 
17
	   		if (array_key_exists('rang',$_REQUEST)) { $this->dblock->ajouterDonnee('rang',$_REQUEST['rang']); }
18
 
19
 
20
				$this->buildContext();
21
				$this->addMacroElement();
22
			}
23
 
24
			function buildContext()
25
			{
26
 
27
			}
28
 
29
			function addMacroElement()
30
			{
31
 
32
	   	/*balise:NOM_SELECTION*/
33
	   	$aMacroElement = $this->macroElementFactory('NOM_SELECTION',$this->dblock);
34
	   	$aMacroElement->construire();
35
 
36
			}
37
 
38
		}
39
 
40
?>
41