Rev 2009 | Rev 2016 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?php
/**
* On appelle le fichier des fonctions d'initialisation de code igniter
*/
require_once GEN_CHEMIN_BIBLIO.'ci_initialisation.fonct.php' ;
/**
* Fonction d'affichage de Papyrus, pour le corps de page
*/
function afficherContenuCorps() {
// si l'utilisateur est authentifié
if($GLOBALS['_GEN_commun']['pear_auth']->getAuth()) {
// on renvoie la vue principale de l'application
return executerCodeIgniter('admin_administrateur') ;
} else {
// sinon on lui demande de s'identifier
return executerCodeIgniter('admin_administrateur','demander_ident') ;
}
}
/*
* afficherContenuTete()
* afficherContenuNavigation()
* afficherContenuMenu()
* afficherContenuPied()
*
*/
?>