Subversion Repositories eFlore/Archives.eflore-consultation-v2

Compare Revisions

Ignore whitespace Rev 27 → Rev 28

/trunk/serveur/eflore_mv/modeles/groupes_macro_elements/selectionnoms.php
1,41 → 1,37
<?
class selectionnoms extends groupeMacroElement {
 
function __construct($aConn)
{
parent::__construct($aConn);
}
function construire()
{
$this->dblock= new blockdedonnees('FICHE_LISTE_NOMS');
if (array_key_exists('radical',$_REQUEST)) { $this->dblock->ajouterDonnee('radical',$_REQUEST['radical']); }
if (array_key_exists('rang',$_REQUEST)) { $this->dblock->ajouterDonnee('rang',$_REQUEST['rang']); }
$this->buildContext();
$this->addMacroElement();
}
function buildContext()
{
}
function addMacroElement()
{
/*balise:NOM_SELECTION*/
$aMacroElement = $this->macroElementFactory('NOM_SELECTION',$this->dblock);
$aMacroElement->construire();
}
}
?>
<?php
class selectionnoms extends groupeMacroElement {
function __construct($aConn)
{
parent::__construct($aConn);
}
function construire()
{
$this->dblock= new blockdedonnees('FICHE_LISTE_NOMS');
if (array_key_exists('radical',$_REQUEST)) {
$this->dblock->ajouterDonnee('radical',$_REQUEST['radical']);
}
if (array_key_exists('rang',$_REQUEST)) {
$this->dblock->ajouterDonnee('rang',$_REQUEST['rang']);
}
$this->buildContext();
$this->addMacroElement();
}
function buildContext()
{
}
function addMacroElement()
{
/*balise:NOM_SELECTION*/
$aMacroElement = $this->macroElementFactory('NOM_SELECTION',$this->dblock);
$aMacroElement->construire();
}
}
?>