Subversion Repositories eFlore/Applications.coel-consultation

Rev

Rev 7 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 jpm 1
<?php
2
// declare(encoding='UTF-8');
3
/**
4
 * Application
5
 *
6
 * PHP version 5
7
 *
8
 * @category PHP
9
 * @package Framework
10
 * @author Aurelien PERONNET <aurelien@tela-botanica.org>
11
 * @copyright Tela-Botanica 2009
12
 * @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
13
 * @license   http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
14
 * @version   SVN: $$Id$$
15
 * @link /doc/framework/
16
 */
17
 
18
// La fonction autolad doit être appelée avant tout autre chose dans l'application.
19
// Sinon, rien ne sera chargé.
20
require_once dirname(__FILE__).'/../framework/framework/autoload.inc.php';
21
Application::setChemin(__FILE__);
22
Application::setInfo(Config::get('info'));
23
/**
24
 * Fonction d'affichage de Papyrus, pour le corps de page
25
 */
26
function afficherContenuCorps() {
27
	return 'CONTENU_CORPS';
28
}
29
 
30
function afficherContenuTete() {
31
	return 'CONTENU_TETE';
32
}
33
 
34
function afficherContenuPied() {
35
	return 'CONTENU_PIED';
36
}
37
 
38
function afficherContenuNavigation() {
39
	return 'CONTENU_NAVIGATION';
40
}
41
 
42
function afficherContenuMenu() {
43
	return 'CONTENU_MENU';
44
}
45
?>