Rev 7 | Rev 39 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?php
// declare(encoding='UTF-8');
/**
* Application de consultation des Collections.
* Fichier contenant les fonctions nécessaire pour l'insertion de l'application dans Papyrus.
*
* @category PHP5
* @package Collection
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
* @copyright 2010 Tela-Botanica
* @license GPL-v3 et CECILL-v2
* @version SVN:<svn_id>
*/
/** Inclusion du fichier principal de l'application*/
require_once 'collection.php';
/**
* Fonction d'affichage de Papyrus, pour le corps de page.
*/
function afficherContenuCorps() {
Collection::getContenuCorps();
}
function afficherContenuTete() {
return 'CONTENU_TETE';
}
function afficherContenuPied() {
return 'CONTENU_PIED';
}
function afficherContenuNavigation() {
return 'CONTENU_NAVIGATION';
}
function afficherContenuMenu() {
return 'CONTENU_MENU';
}
?>