12 |
jpm |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Mon exemple d'application.
|
|
|
5 |
* Fichier contenant les fonctions nécessaire pour l'insertion de l'application dans Papyrus.
|
|
|
6 |
*
|
|
|
7 |
* @category PHP 5.2
|
|
|
8 |
* @package eflore-consultation
|
|
|
9 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
10 |
* @author Delphine CAUQUIL <delphine@tela-botanica.org>
|
|
|
11 |
* @copyright 2011 Tela-Botanica
|
|
|
12 |
* @license http://www.gnu.org/licenses/gpl.html Licence GNU-GPL-v3
|
|
|
13 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL-v2
|
|
|
14 |
* @version $Id$
|
|
|
15 |
*/
|
|
|
16 |
|
|
|
17 |
// Gestion des paramêtres définis dans Papyrus
|
|
|
18 |
if (isset($GLOBALS['_GEN_commun']['info_application']->module) && !isset($_GET['module'])) {
|
|
|
19 |
$_GET['module'] = $GLOBALS['_GEN_commun']['info_application']->module;
|
|
|
20 |
}
|
|
|
21 |
|
|
|
22 |
/** Inclusion du fichier principal de l'application*/
|
|
|
23 |
require_once dirname(__FILE__).DIRECTORY_SEPARATOR.'eflore.php';
|
|
|
24 |
|
|
|
25 |
// Définition des feuilles de style de l'application pour Papyrus
|
111 |
aurelien |
26 |
// TODO: il y a surement mieux à faire pour obtenir l'url des fichiers
|
|
|
27 |
$chemin = $chemin = 'http://localhost/'.basename(dirname(__FILE__)).DS.'presentations'.DS;
|
12 |
jpm |
28 |
GEN_stockerStyleExterne('eflore', $chemin.'styles'.DS.'eflore.css');
|
111 |
aurelien |
29 |
GEN_stockerStyleExterne('jquery-ui', $chemin.'styles'.DS.'jquery-ui-1.8.16'.DS.'ui-lightness'.DS.'jquery-ui-1.8.16.custom.css');
|
268 |
aurelien |
30 |
GEN_stockerStyleExterne('fancybox', $chemin.'styles'.DS.'fancybox'.DS.'jquery.fancybox-1.3.4.css');
|
12 |
jpm |
31 |
|
|
|
32 |
// Définition des fichiers JS de l'application pour Papyrus
|
111 |
aurelien |
33 |
GEN_stockerFichierScript('jquery-1.7', $chemin.'scripts'.DS.'jquery-1.7.js');
|
|
|
34 |
GEN_stockerFichierScript('jquery-ui-1.8.16', $chemin.'scripts'.DS.'jquery-ui-1.8.16.custom.min.js');
|
268 |
aurelien |
35 |
GEN_stockerFichierScript('fancybox', $chemin.'scripts'.DS.'jquery.fancybox-1.3.4.pack.js');
|
122 |
aurelien |
36 |
GEN_stockerFichierScript('autocompletion', $chemin.'scripts'.DS.'recherche.js');
|
296 |
aurelien |
37 |
GEN_stockerFichierScript('cookie', $chemin.'scripts'.DS.'jquery.cookie.js');
|
12 |
jpm |
38 |
|
|
|
39 |
// +--------------------------------------------------------------------------------------------------+
|
|
|
40 |
// Remplacement de méta tags fournit par Papyrus par ceux créés dans l'appli
|
|
|
41 |
if (AppControleur::getMetaTitre() != '') {
|
|
|
42 |
$GLOBALS['_PAPYRUS_']['rendu']['TITRE_PAGE'] = AppControleur::getMetaTitre();
|
|
|
43 |
}
|
|
|
44 |
if (AppControleur::getMetaDescription() != '') {
|
|
|
45 |
GEN_modifierMetaName('description', AppControleur::getMetaDescription());
|
|
|
46 |
}
|
|
|
47 |
if (AppControleur::getMetaTags() != '') {
|
|
|
48 |
GEN_modifierMetaName('keywords', AppControleur::getMetaTags());
|
|
|
49 |
}
|
|
|
50 |
|
|
|
51 |
// +--------------------------------------------------------------------------------------------------+
|
|
|
52 |
// Fonctions d'affichage dans Papyrus
|
|
|
53 |
/**
|
|
|
54 |
* Fonction d'affichage de Papyrus, pour le corps de page.
|
|
|
55 |
*/
|
|
|
56 |
function afficherContenuCorps() {
|
|
|
57 |
return AppControleur::getContenuCorps();
|
|
|
58 |
}
|
|
|
59 |
|
|
|
60 |
function afficherContenuTete() {
|
|
|
61 |
return AppControleur::getContenuTete();
|
|
|
62 |
}
|
|
|
63 |
|
|
|
64 |
function afficherContenuPied() {
|
|
|
65 |
return AppControleur::getContenuPied();
|
|
|
66 |
}
|
|
|
67 |
|
|
|
68 |
function afficherContenuNavigation() {
|
|
|
69 |
return AppControleur::getContenuNavigation();
|
|
|
70 |
}
|
|
|
71 |
|
|
|
72 |
function afficherContenuMenu() {
|
|
|
73 |
return AppControleur::getContenuMenu();
|
|
|
74 |
}
|
|
|
75 |
?>
|