Subversion Repositories eFlore/Archives.eflore-consultation-v2

Compare Revisions

Regard whitespace Rev 41 → Rev 43

/trunk/serveur/eflore_mv/vues/liste_nom_latin_xhtml.php
1,6 → 1,18
<?php
global $gBlock;
 
function pattern1($donnees)
{
echo "<H1>Liste des noms</H1>";
echo "radical: $donnees['radical']</br>";
echo '</br>';
}
function pattern2($donnees)
{
echo "<li>Nom:$donnees['intitule.eni_intitule_nom']</li>";
}
 
class liste_nom_latin_xhtml implements iVue {
protected $leBlock;
10,6 → 22,16
$this->leBlock = $unBlock;
}
function serialiser2()
{
echo '<h2>Test</h3>';
$this->leBlock->afficherPattern('FICHE_LISTE_NOMS','pattern1');
echo '<OL>';
$this->leBlock->afficherPattern('FICHE_LISTE_NOMS>NOM_SELECTION','pattern2');
echo '</OL>';
}
function serialiser()
{
$gBlock = $this->leBlock;