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 |
|
1073 |
aurelien |
17 |
// Gestion des paramêtres passés par Papyrus
|
|
|
18 |
if (isset($GLOBALS['_GEN_commun']['info_application']->referentiel)) {
|
|
|
19 |
$_GET['referentiel'] = $GLOBALS['_GEN_commun']['info_application']->referentiel;
|
|
|
20 |
}
|
|
|
21 |
|
12 |
jpm |
22 |
if (isset($GLOBALS['_GEN_commun']['info_application']->module) && !isset($_GET['module'])) {
|
|
|
23 |
$_GET['module'] = $GLOBALS['_GEN_commun']['info_application']->module;
|
|
|
24 |
}
|
|
|
25 |
|
|
|
26 |
/** Inclusion du fichier principal de l'application*/
|
|
|
27 |
require_once dirname(__FILE__).DIRECTORY_SEPARATOR.'eflore.php';
|
|
|
28 |
|
1098 |
raphael |
29 |
$chemin = '/eflore/consultation/';
|
|
|
30 |
$chemin_commun = 'http://www.tela-botanica.org/commun/';
|
12 |
jpm |
31 |
// Définition des feuilles de style de l'application pour Papyrus
|
111 |
aurelien |
32 |
// TODO: il y a surement mieux à faire pour obtenir l'url des fichiers
|
1098 |
raphael |
33 |
GEN_stockerStyleExterne('jquery-ui', $chemin_commun.'jquery/jquery-ui/1.8.17/css/ui-lightness/jquery-ui-1.8.17.custom.css');
|
|
|
34 |
GEN_stockerStyleExterne('fancybox', $chemin_commun.'jquery/fancybox/1.3.4/jquery.fancybox-1.3.4.css');
|
|
|
35 |
GEN_stockerStyleExterne('eflore', $chemin.'/presentations/styles/eflore.css');
|
12 |
jpm |
36 |
|
|
|
37 |
// Définition des fichiers JS de l'application pour Papyrus
|
1098 |
raphael |
38 |
GEN_stockerFichierScript('jquery-1.7', $chemin_commun.'jquery/1.7.1'.DS.'jquery-1.7.1.js');
|
|
|
39 |
GEN_stockerFichierScript('jquery-ui-1.8.16', $chemin_commun.'jquery/jquery-ui/1.8.5/js'.DS.'jquery-ui-1.8.5.custom.min.js');
|
|
|
40 |
GEN_stockerFichierScript('fancybox', $chemin_commun.'/jquery/fancybox/1.3.4'.DS.'jquery.fancybox-1.3.4.pack.js');
|
|
|
41 |
GEN_stockerFichierScript('cookie', $chemin_commun.'jquery/cookie/1.0/jquery.cookie.min.js');
|
|
|
42 |
GEN_stockerFichierScript('eflore-general', $chemin.'presentations/scripts'.DS.'eflore.js');
|
|
|
43 |
GEN_stockerFichierScript('autocompletion', $chemin.'presentations/scripts'.DS.'recherche.js');
|
|
|
44 |
GEN_stockerFichierScript('eflore-synthese', $chemin.'presentations/scripts'.DS.'fiche-synthese.js');
|
12 |
jpm |
45 |
|
|
|
46 |
// +--------------------------------------------------------------------------------------------------+
|
|
|
47 |
// Remplacement de méta tags fournit par Papyrus par ceux créés dans l'appli
|
|
|
48 |
if (AppControleur::getMetaTitre() != '') {
|
|
|
49 |
$GLOBALS['_PAPYRUS_']['rendu']['TITRE_PAGE'] = AppControleur::getMetaTitre();
|
|
|
50 |
}
|
|
|
51 |
if (AppControleur::getMetaDescription() != '') {
|
|
|
52 |
GEN_modifierMetaName('description', AppControleur::getMetaDescription());
|
|
|
53 |
}
|
|
|
54 |
if (AppControleur::getMetaTags() != '') {
|
|
|
55 |
GEN_modifierMetaName('keywords', AppControleur::getMetaTags());
|
|
|
56 |
}
|
|
|
57 |
|
|
|
58 |
// +--------------------------------------------------------------------------------------------------+
|
|
|
59 |
// Fonctions d'affichage dans Papyrus
|
|
|
60 |
/**
|
|
|
61 |
* Fonction d'affichage de Papyrus, pour le corps de page.
|
|
|
62 |
*/
|
|
|
63 |
function afficherContenuCorps() {
|
|
|
64 |
return AppControleur::getContenuCorps();
|
|
|
65 |
}
|
|
|
66 |
|
|
|
67 |
function afficherContenuTete() {
|
|
|
68 |
return AppControleur::getContenuTete();
|
|
|
69 |
}
|
|
|
70 |
|
|
|
71 |
function afficherContenuPied() {
|
|
|
72 |
return AppControleur::getContenuPied();
|
|
|
73 |
}
|
|
|
74 |
|
|
|
75 |
function afficherContenuNavigation() {
|
|
|
76 |
return AppControleur::getContenuNavigation();
|
|
|
77 |
}
|
|
|
78 |
|
|
|
79 |
function afficherContenuMenu() {
|
|
|
80 |
return AppControleur::getContenuMenu();
|
|
|
81 |
}
|
|
|
82 |
?>
|