Subversion Repositories eFlore/Applications.coel-consultation

Rev

Rev 177 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 177 Rev 231
Line 7... Line 7...
7
 * @package		Collection
7
 * @package		Collection
8
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
8
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
9
 * @copyright	2010 Tela-Botanica
9
 * @copyright	2010 Tela-Botanica
10
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
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
11
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
12
 * @version		SVN: $Id: aControleur.php 177 2013-11-21 16:00:20Z mathias $
12
 * @version		SVN: $Id: aControleur.php 231 2014-07-17 12:23:56Z mathias $
13
 */
13
 */
14
abstract class aControleur extends Controleur {
14
abstract class aControleur extends Controleur {
Line 15... Line 15...
15
	
15
	
16
	const FMT_DATE = '%d/%m/%Y';// Supporte les formats de dates non valides (1989-00-00)
16
	const FMT_DATE = '%d/%m/%Y';// Supporte les formats de dates non valides (1989-00-00)
Line 461... Line 461...
461
		return $txt;
461
		return $txt;
462
	}
462
	}
Line 463... Line 463...
463
	
463
	
464
	protected function chargerPiedDePage() {
464
	protected function chargerPiedDePage() {
-
 
465
		$donnees['appli'] = Application::getInfo();
465
		$donnees['appli'] = Application::getInfo();
466
		$donnees['url_base_widget_remarques'] = Config::get('url_base_widget_remarques');
466
		$this->setSortie(self::RENDU_PIED, $this->getVue('pied', $donnees));
467
		$this->setSortie(self::RENDU_PIED, $this->getVue('pied', $donnees));
467
	}
468
	}
468
}
469
}