Line 1... |
Line 1... |
1 |
<?php
|
1 |
<?php
|
2 |
// declare(encoding='UTF-8');
|
- |
|
3 |
/** Inclusion du fichier principal de l'application*/
|
- |
|
Line 4... |
Line 2... |
4 |
|
2 |
|
5 |
function __autoload($nom_classe) {
|
- |
|
6 |
// Tableau des chemins à inclure pour trouver une classe relatif à ce fichier
|
3 |
function __autoload($nom_classe) {
|
7 |
$chemins = array(
|
4 |
$chemins = array(
|
8 |
'..'.DS.'bibliotheque'.DS.'dao',
|
5 |
'..'.DS.'bibliotheque'.DS.'dao',
|
9 |
'..'.DS.'bibliotheque'.DS.'utilitaires',
|
6 |
'..'.DS.'bibliotheque'.DS.'utilitaires',
|
10 |
'bibliotheque'.DS.'pear','composants'); foreach ($chemins as $chemin) {
|
7 |
'bibliotheque'.DS.'pear','composants'); foreach ($chemins as $chemin) {
|
Line 20... |
Line 17... |
20 |
// pour le moment on supprime le paramètre à la main car la présence des fichiers d'i18n n'est pas testée
|
17 |
// pour le moment on supprime le paramètre à la main car la présence des fichiers d'i18n n'est pas testée
|
21 |
if(isset($_GET['langue'])) {
|
18 |
if(isset($_GET['langue'])) {
|
22 |
unset($_GET['langue']);
|
19 |
unset($_GET['langue']);
|
23 |
}
|
20 |
}
|
Line 24... |
Line -... |
24 |
|
- |
|
25 |
// Le fichier Framework.php du Framework de Tela Botanica doit être appelé avant tout autre chose dans l'application.
|
21 |
|
26 |
// Sinon, rien ne sera chargé.
|
- |
|
27 |
// L'emplacement du Framework peut varier en fonction de l'environnement (test, prod...). Afin de faciliter la configuration
|
- |
|
28 |
// de l'emplacement du Framework, un fichier framework.defaut.php doit être renommé en framework.php et configuré pour chaque installation de
|
- |
|
29 |
// l'application.
|
- |
|
30 |
// Chemin du fichier chargeant le framework requis
|
22 |
// Inclusion du Framework
|
31 |
$framework = dirname(__FILE__).'/framework.php';
|
- |
|
32 |
if (!file_exists($framework)) {
|
- |
|
33 |
$e = "Veuillez paramêtrer l'emplacement et la version du Framework dans le fichier $framework";
|
- |
|
34 |
trigger_error($e, E_USER_ERROR);
|
- |
|
35 |
} else {
|
- |
|
36 |
// Inclusion du Framework
|
23 |
$framework = __DIR__ . '/framework.php';
|
- |
|
24 |
require_once $framework;
|
37 |
require_once $framework;
|
25 |
|
38 |
// Ajout d'information concernant cette application
|
26 |
// Ajout d'information concernant cette application
|
39 |
Framework::setCheminAppli(__FILE__);// Obligatoire
|
27 |
Framework::setCheminAppli(__FILE__);// Obligatoire
|
40 |
Framework::setInfoAppli(Config::get('info'));// Optionnel
|
28 |
Framework::setInfoAppli(Config::get('info'));// Optionnel
|
41 |
|
29 |
|
42 |
// Vous pouvez ci-dessous commencer le développement de votre application
|
30 |
// Annuler les fausses bonnes idées du JPFramework
|
- |
|
31 |
restore_exception_handler();
|
43 |
if (Config::get('debogage')) {
|
32 |
restore_error_handler();
|
44 |
Debug::tailleMemoireScript('Taille mémoire du script :');
|
33 |
//error_reporting(E_ALL ^ E_NOTICE);
|
45 |
}
|
34 |
|
46 |
if (Config::get('benchmark_chrono')) {
|
35 |
// Configuration spécifique à Wordpress (URL racine, fichier d'index)
|
47 |
Chronometre::chrono("Lancement d'eFlore");
|
- |
|
48 |
}
|
36 |
Config::charger(__DIR__ . "/configurations/config_wordpress.ini");
|
49 |
|
37 |
|
50 |
Config::charger("../eflore-test/consultation/configurations/config_wordpress.ini");
|
38 |
// Configuration issue de la page ACF "Applis externes"
|
51 |
//var_dump(Config::get('url_base'));
|
- |
|
52 |
//exit;
|
39 |
Config::set('base_url_application', $chemin_eflore_http);
|
53 |
|
40 |
|
54 |
// Initialisation du controleur principal de l'application
|
- |
|
55 |
try {
|
41 |
// Initialisation du controleur principal de l'application
|
- |
|
42 |
AppControleur::initialiser();
|
56 |
AppControleur::initialiser();
|
43 |
|
57 |
} catch (Exception $e) {
|
44 |
// Hook d'ajout des scripts
|
- |
|
45 |
add_action('wp_enqueue_scripts', 'eflore_scripts_et_styles');
|
- |
|
46 |
|
- |
|
47 |
// ajout des scripts - utiliser dans le hook ci-dessus uniquement
|
58 |
$message = $e->getMessage()."\nLigne : ".$e->getLine()."\nFichier : ".$e->getFile();
|
48 |
function eflore_scripts_et_styles() {
|
59 |
Debug::printr($message);
|
49 |
global $chemin_eflore_http;
|
- |
|
50 |
// Styles
|
- |
|
51 |
wp_enqueue_style('eFlore-wordpress', $chemin_eflore_http . '/presentations/styles/eflore_wordpress.css');
|
- |
|
52 |
wp_enqueue_style('jquery-ui', 'https://resources.tela-botanica.org/jquery/jquery-ui/1.10.2/css/smoothness/jquery-ui-1.10.2.custom.css');
|
60 |
}
|
53 |
wp_enqueue_style('jquery-fancybox', 'https://resources.tela-botanica.org/jquery/fancybox/1.3.4/jquery.fancybox-1.3.4.css');
|
- |
|
54 |
|
61 |
|
55 |
// Scripts
|
- |
|
56 |
// @TODO remplacer ce patch cracra par une mise à jour du code JS d'eFlore
|
62 |
if (Config::get('benchmark_chrono')) {
|
57 |
wp_enqueue_script('jquery-noconflict-compat', 'https://resources.tela-botanica.org/jquery/jquery-noconflict-compat.js');
|
- |
|
58 |
//wp_enqueue_script('jquery', 'https://resources.tela-botanica.org/jquery/1.9.1/jquery.min.js');
|
- |
|
59 |
wp_enqueue_script('jquery-cookie', 'https://resources.tela-botanica.org/jquery/cookie/1.0/jquery.cookie.min.js');
|
- |
|
60 |
wp_enqueue_script('jquery-ui', 'https://resources.tela-botanica.org/jquery/jquery-ui/1.10.2/js/jquery-ui-1.10.2.custom.min.js');
|
63 |
Chronometre::chrono("Arrêt d'eFlore");
|
61 |
wp_enqueue_script('jquery-fancybox', 'https://resources.tela-botanica.org/jquery/fancybox/1.3.4/jquery.fancybox-1.3.4.pack.js');
|
- |
|
62 |
|
- |
|
63 |
//wp_enqueue_script('eFlore-commun', $chemin_eflore_http . '/presentations/scripts/commun.js');
|
- |
|
64 |
wp_enqueue_script('eFlore-eFlore', $chemin_eflore_http . '/presentations/scripts/eflore.js');
|
- |
|
65 |
wp_enqueue_script('eFlore-recherche', $chemin_eflore_http . '/presentations/scripts/recherche.js');
|
- |
|
66 |
wp_enqueue_script('eFlore-fiche-synthese', $chemin_eflore_http . '/presentations/scripts/fiche-synthese.js');
|
64 |
}
|
67 |
wp_enqueue_script('eFlore-fiche-synthese', $chemin_eflore_http . '/presentations/scripts/fiche-synthese.js');
|
Line 65... |
Line -... |
65 |
}
|
- |
|
66 |
|
- |
|
67 |
|
- |
|
68 |
|
- |
|
69 |
|
- |
|
70 |
|
- |
|
71 |
|
68 |
}
|
72 |
|
- |
|
73 |
//require_once 'eflore.php';?>
|
- |
|
74 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
|
- |
|
75 |
<head>
|
- |
|
76 |
|
- |
|
77 |
<!-- moteur de recherche dans le navigateur chemin xml -->
|
- |
|
78 |
<link rel="search" type="application/opensearchdescription+xml" title="eFlore <?php echo strtoupper($referentiel); ?> : noms scientifiques" href="configurations/RechercheOpenSearch/OpenSearch<?php echo ucfirst($referentiel); ?>.xml" />
|
- |
|
79 |
<!-- Favicones -->
|
- |
|
80 |
<link rel="icon" type="image/png" href="http://resources.tela-botanica.org/tb/img/16x16/favicon.png" />
|
- |
|
81 |
<link rel="shortcut icon" type="image/x-icon" href="http://resources.tela-botanica.org/tb/img/16x16/favicon.ico" />
|
- |
|
82 |
|
- |
|
83 |
<!-- CSS -->
|
- |
|
84 |
<link href="../../eflore/consultation/presentations/styles/eflore_wordpress.css" rel="stylesheet" type="text/css" />
|
- |
|
85 |
<!-- <link href="https://www.tela-botanica.org/sites/botanique/generique/styles/botanique.css" rel="stylesheet" type="text/css" />-->
|
- |
|
86 |
<link href="https://www.tela-botanica.org/commun/jquery/jquery-ui/1.10.2/css/ui-lightness/jquery-ui-1.10.2.custom.css" rel="stylesheet" type="text/css" />
|
- |
|
87 |
<link href="https://www.tela-botanica.org/commun/jquery/fancybox/1.3.4/jquery.fancybox-1.3.4.css" rel="stylesheet" type="text/css" />
|
- |
|
88 |
|
- |
|
89 |
|
- |
|
90 |
|
- |
|
91 |
<!-- JavaScript -->
|
- |
|
92 |
<script type="text/javascript" src="https://www.tela-botanica.org/commun/jquery/1.7.1/jquery-1.7.1.js"></script>
|
- |
|
93 |
<script type="text/Javascript" src="https://www.tela-botanica.org/commun/jquery/cookie/1.0/jquery.cookie.min.js"></script>
|
- |
|
94 |
<script type="text/javascript" src="https://www.tela-botanica.org/commun/jquery/jquery-ui/1.10.2/js/jquery-ui-1.10.2.custom.min.js"></script>
|
- |
|
95 |
<script type="text/Javascript" src="https://www.tela-botanica.org/commun/jquery/fancybox/1.3.4/jquery.fancybox-1.3.4.pack.js"></script>
|
- |
|
96 |
|
- |
|
97 |
<script type="text/Javascript" src="https://www.tela-botanica.org/sites/commun/generique/scripts/commun.js"></script>
|
- |
|
98 |
|
- |
|
99 |
<script type="text/Javascript" src="../../eflore-test/consultation/presentations/scripts/eflore.js"></script>
|
- |
|
100 |
<script type="text/Javascript" src="../../eflore-test/consultation/presentations/scripts/recherche.js"></script>
|
- |
|
101 |
<script type="text/Javascript" src="../../eflore-test/consultation/presentations/scripts/fiche-synthese.js"></script>
|
- |
|
102 |
|
69 |
|
103 |
<!-- JavaScript et CSS spécifiques au module -->
|
- |
|
104 |
<?php echo AppControleur::getEntete(); ?>
|
- |
|
105 |
</head>
|
70 |
// Affichage du contenu de l'application
|
106 |
<?php
|
- |
|
107 |
echo AppControleur::getContenuCorps();
|
71 |
function eflore_get_contenu() {
|
108 |
|
- |
|