Subversion Repositories eFlore/Archives.eflore-consultation-v2

Compare Revisions

Ignore whitespace Rev 43 → Rev 44

/trunk/serveur/bibliotheque/classes/eflore_collection_block_de_donnees.class.php
44,22 → 44,22
return $this->erreur;
}
function afficherPattern($chemin,$nom_fonction)
{
//echo "boucle</br>";
for($i=0;$i<count($this->collection);$i++)
{
$blockdonnees =$this->collection[$i];
$blockdonnees->afficherPattern($chemin,$nom_fonction);
}
}
function afficherPattern($chemin, $nom_fonction)
{
$retour = '';
for($i = 0; $i < count($this->collection); $i++) {
$block_donnees = $this->collection[$i];
$retour .= $block_donnees->afficherPattern($chemin, $nom_fonction);
}
return $retour;
}
function afficher()
{
echo '<li><b>'.$this->identifiant.'</b></li>';
for($i = 0; $i < count($this->collection); $i++) {
$uneCollection = $this->collection[$i];
$uneCollection->afficher();
$une_collection = $this->collection[$i];
$une_collection->afficher();
}
}
}