Subversion Repositories eFlore/Applications.coel-consultation

Compare Revisions

Ignore whitespace Rev 3 → Rev 4

/trunk/collection.php
New file
0,0 → 1,45
<?php
// declare(encoding='UTF-8');
/**
* Application
*
* PHP version 5
*
* @category PHP
* @package Framework
* @author Aurelien PERONNET <aurelien@tela-botanica.org>
* @copyright Tela-Botanica 2009
* @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$$
* @link /doc/framework/
*/
 
// La fonction autolad doit être appelée avant tout autre chose dans l'application.
// Sinon, rien ne sera chargé.
require_once dirname(__FILE__).'/../framework/framework/autoload.inc.php';
Application::setChemin(__FILE__);
Application::setInfo(Config::get('info'));
/**
* Fonction d'affichage de Papyrus, pour le corps de page
*/
function afficherContenuCorps() {
return 'CONTENU_CORPS';
}
 
function afficherContenuTete() {
return 'CONTENU_TETE';
}
 
function afficherContenuPied() {
return 'CONTENU_PIED';
}
 
function afficherContenuNavigation() {
return 'CONTENU_NAVIGATION';
}
 
function afficherContenuMenu() {
return 'CONTENU_MENU';
}
?>