* @copyright 2010 Tela-Botanica * @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL * @license http://www.gnu.org/licenses/gpl.html Licence GNU-GPL * @version SVN: $Id$ */ class Carte extends aControleur { //+----------------------------------------------------------------------------------------------------------------+ // Méthodes /** * Fonction d'affichage par défaut, elle appelle la liste des administrateurs */ public function executerActionParDefaut() { return $this->cartographier(); } /** * Cartographier les collections. * @return string la vue correspondante */ public function cartographier() { $resultat = $this->getVue('carte', array()); $this->setSortie(self::RENDU_CORPS, $resultat); $this->chargerPiedDePage(); } } ?>