Subversion Repositories eFlore/Applications.coel-consultation

Compare Revisions

Ignore whitespace Rev 85 → Rev 84

/trunk/squelettes/pied.tpl.html
1,6 → 1,4
<!-- COL - DEBUT PIED DE PAGE -->
<p>Pour plus d'informations ou nous faire part d'une erreur dans les informations affichées, veuillez nous contacter à l'adresse
<a href="mailto:coel@tela-botanica.org">coel@tela-botanica.org</a>.</p>
<p>Merci, de signalez
<a href="http://suivi.tela-botanica.org/index.php?project=36&amp;do=index" class="ext">les bogues et améliorations pour cette application</a>.</p>
<p>Pour plus d'informations ou nous faire part d'une erreur, veuillez nous contacter à l'adresse
<a href="mailto:coel@tela-botanica.org">coel@tela-botanica.org</a>.</p>
<!-- COL - FIN PIED DE PAGE -->
/trunk/controleurs/Syndication.php
40,7 → 40,6
// Traitement du squelette et retour
$resultat = $this->getVue('syndication', $donnees);
$this->setSortie(self::RENDU_CORPS, $resultat);
$this->chargerPiedDePage();
}
}
?>
/trunk/controleurs/Recherche.php
201,4 → 201,12
}
}
}
/**
* Recherche des collections.
* @return string la vue correspondante
*/
public function chargerPiedDePage() {
$this->setSortie(self::RENDU_PIED, $this->getVue('pied'));
}
}
/trunk/controleurs/ColControleur.php
369,8 → 369,4
}
}
}
protected function chargerPiedDePage() {
$this->setSortie(self::RENDU_PIED, $this->getVue('pied'));
}
}
/trunk/controleurs/Carte.php
55,7 → 55,6
$resultat = $this->getVue('carte', $donnees);
$this->setSortie(self::RENDU_CORPS, $resultat);
$this->chargerPiedDePage();
}
private function chargerZonesNbre(&$zones) {
/trunk/controleurs/Fiche.php
66,8 → 66,7
$this->setSortie(self::META_TITRE, $titre);
$this->setSortie(self::META_DESCRIPTION, $description);
$this->setSortie(self::META_TAGS, $tags);
$this->setSortie(self::RENDU_CORPS, $this->getVue('fiche_structure', $donnees));
$this->chargerPiedDePage();
$this->setSortie(self::RENDU_CORPS, $this->getVue('fiche_structure', $donnees));
}
}
238,7 → 237,6
$this->setSortie(self::META_DESCRIPTION, $description);
$this->setSortie(self::META_TAGS, $tags);
$this->setSortie(self::RENDU_CORPS, $this->getVue('fiche_collection', $donnees));
$this->chargerPiedDePage();
}
}
 
586,7 → 584,6
$this->setSortie(self::META_DESCRIPTION, $description);
$this->setSortie(self::META_TAGS, $tags);
$this->setSortie(self::RENDU_CORPS, $this->getVue('fiche_personne', $donnees));
$this->chargerPiedDePage();
}
}