Subversion Repositories eFlore/Applications.coel-consultation

Rev

Rev 171 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
25 jpm 1
<?php
2
// declare(encoding='UTF-8');
3
/**
4
 * classe Controleur du module Carte.
5
 *
6
 * @package		Collection
7
 * @category	Php5
8
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
9
 * @copyright	2010 Tela-Botanica
10
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
11
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
12
 * @version		SVN: $Id$
13
 */
114 jpm 14
class Carte extends aControleur {
25 jpm 15
 
16
	//+----------------------------------------------------------------------------------------------------------------+
17
	// Méthodes
18
	/**
19
	 * Fonction d'affichage par défaut, elle appelle la liste des administrateurs
20
	 */
21
	public function executerActionParDefaut() {
22
		return $this->cartographier();
23
	}
24
 
25
	/**
26
	 * Cartographier les collections.
27
	 * @return string la vue correspondante
28
	 */
29
	public function cartographier() {
258 delphine 30
 
25 jpm 31
 
258 delphine 32
		$resultat = $this->getVue('carte', array());
25 jpm 33
		$this->setSortie(self::RENDU_CORPS, $resultat);
85 jpm 34
		$this->chargerPiedDePage();
25 jpm 35
	}
36
}
37
?>