Subversion Repositories eFlore/Archives.eflore-consultation-v2

Compare Revisions

Ignore whitespace Rev 62 → Rev 63

/trunk/serveur/eflore_mv/modeles/groupes_macro_elements/synthese.php
New file
0,0 → 1,33
<?php
class synthese extends groupeMacroElement {
function __construct($une_connexion)
{
parent::__construct($une_connexion);
}
function construire()
{
$this->dblock = new blockdedonnees('FICHE_SYNTHESE');
if (array_key_exists('nn', $_REQUEST)) {
$this->dblock->ajouterDonnee('nn', $_REQUEST['nn']);
}
$this->construireContexte();
$this->ajouterMacroElement();
}
function construireContexte()
{
}
function ajouterMacroElement()
{
/*balise:SYNTHESE*/
$un_macro_element = $this->macroElementFactory('NOM_SYNTHESE', $this->dblock);
$un_macro_element->construire();
}
}
?>