1474 |
delphine |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/** Inclusion du fichier principal de l'application*/
|
|
|
4 |
|
|
|
5 |
function __autoload($nom_classe) {
|
|
|
6 |
// Tableau des chemins à inclure pour trouver une classe relatif à ce fichier
|
|
|
7 |
$chemins = array(
|
|
|
8 |
'..'.DS.'bibliotheque'.DS.'dao',
|
|
|
9 |
'..'.DS.'bibliotheque'.DS.'utilitaires',
|
|
|
10 |
'bibliotheque'.DS.'pear','composants'); foreach ($chemins as $chemin) {
|
|
|
11 |
$fichier_a_inclure = dirname(__FILE__).DS.$chemin.DS.$nom_classe.'.php';
|
|
|
12 |
if (file_exists($fichier_a_inclure)) {
|
|
|
13 |
include_once $fichier_a_inclure;
|
|
|
14 |
return null;
|
|
|
15 |
}
|
|
|
16 |
}
|
|
|
17 |
}
|
|
|
18 |
|
|
|
19 |
// ATTENTION: aucune autre langue que le français n'est supportée pour eflore
|
|
|
20 |
// 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'])) {
|
|
|
22 |
unset($_GET['langue']);
|
|
|
23 |
}
|
|
|
24 |
|
|
|
25 |
// Le fichier Framework.php du Framework de Tela Botanica doit être appelé avant tout autre chose dans l'application.
|
|
|
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
|
|
|
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
|
|
|
37 |
require_once $framework;
|
|
|
38 |
// Ajout d'information concernant cette application
|
|
|
39 |
Framework::setCheminAppli(__FILE__);// Obligatoire
|
|
|
40 |
Framework::setInfoAppli(Config::get('info'));// Optionnel
|
|
|
41 |
|
|
|
42 |
// Vous pouvez ci-dessous commencer le développement de votre application
|
|
|
43 |
if (Config::get('debogage')) {
|
|
|
44 |
Debug::tailleMemoireScript('Taille mémoire du script :');
|
|
|
45 |
}
|
|
|
46 |
if (Config::get('benchmark_chrono')) {
|
|
|
47 |
Chronometre::chrono("Lancement d'eFlore");
|
|
|
48 |
}
|
|
|
49 |
|
|
|
50 |
Config::charger("../eflore/consultation/configurations/config_wordpress.ini");
|
|
|
51 |
|
|
|
52 |
// Initialisation du controleur principal de l'application
|
|
|
53 |
try {
|
|
|
54 |
AppControleur::initialiser();
|
|
|
55 |
} catch (Exception $e) {
|
|
|
56 |
$message = $e->getMessage()."\nLigne : ".$e->getLine()."\nFichier : ".$e->getFile();
|
|
|
57 |
Debug::printr($message);
|
|
|
58 |
}
|
|
|
59 |
|
|
|
60 |
if (Config::get('benchmark_chrono')) {
|
|
|
61 |
Chronometre::chrono("Arrêt d'eFlore");
|
|
|
62 |
}
|
|
|
63 |
}
|
|
|
64 |
|
|
|
65 |
|
|
|
66 |
|
|
|
67 |
|
|
|
68 |
|
|
|
69 |
|
|
|
70 |
|
|
|
71 |
//require_once 'eflore.php';?>
|
|
|
72 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
|
|
|
73 |
<head>
|
|
|
74 |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
75 |
<meta http-equiv="Content-style-type" content="text/css" />
|
|
|
76 |
<meta http-equiv="Content-script-type" content="text/javascript" />
|
|
|
77 |
<meta http-equiv="Content-language" content="fr" />
|
|
|
78 |
<title><?php echo AppControleur::getMetaTitre(); ?></title>
|
|
|
79 |
<meta name="description" content="<?php echo AppControleur::getMetaDescription();?>" />
|
|
|
80 |
<meta name="keywords" content="<?php echo AppControleur::getMetaTags();?>" />
|
|
|
81 |
|
|
|
82 |
<meta name="revisit-after" content="15 days" />
|
|
|
83 |
<meta name="robots" content="index,follow" />
|
|
|
84 |
<meta name="author" content="Tela Botanica" />
|
|
|
85 |
|
|
|
86 |
<!-- OpenGraph pour Facebook, Pinterest, Google+ -->
|
|
|
87 |
<meta property="og:type" content="website" />
|
|
|
88 |
<meta property="og:title" content="eFlore" />
|
|
|
89 |
<meta property="og:site_name" content="Tela Botanica" />
|
|
|
90 |
<meta property="og:description" content="eFlore, la flore électronique collaborative en ligne" />
|
|
|
91 |
<meta property="og:image" content="http://resources.tela-botanica.org/tb/img/256x256/carre_englobant.png" />
|
|
|
92 |
<meta property="og:image:type" content="image/png" />
|
|
|
93 |
<meta property="og:image:width" content="256" />
|
|
|
94 |
<meta property="og:image:height" content="256" />
|
|
|
95 |
<meta property="og:locale" content="fr_FR" />
|
|
|
96 |
|
|
|
97 |
<!-- moteur de recherche dans le navigateur chemin xml -->
|
|
|
98 |
<link rel="search" type="application/opensearchdescription+xml" title="eFlore <?php echo strtoupper($referentiel); ?> : noms scientifiques" href="configurations/RechercheOpenSearch/OpenSearch<?php echo ucfirst($referentiel); ?>.xml" />
|
|
|
99 |
<!-- Favicones -->
|
|
|
100 |
<link rel="icon" type="image/png" href="http://resources.tela-botanica.org/tb/img/16x16/favicon.png" />
|
|
|
101 |
<link rel="shortcut icon" type="image/x-icon" href="http://resources.tela-botanica.org/tb/img/16x16/favicon.ico" />
|
|
|
102 |
|
|
|
103 |
<!-- CSS -->
|
|
|
104 |
<link href="../eflore/consultation/presentations/styles/eflore_wordpress.css" rel="stylesheet" type="text/css" />
|
|
|
105 |
<!-- <link href="http://www.tela-botanica.org/sites/botanique/generique/styles/botanique.css" rel="stylesheet" type="text/css" />-->
|
|
|
106 |
<link href="http://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" />
|
|
|
107 |
<link href="http://www.tela-botanica.org/commun/jquery/fancybox/1.3.4/jquery.fancybox-1.3.4.css" rel="stylesheet" type="text/css" />
|
|
|
108 |
|
|
|
109 |
|
|
|
110 |
|
|
|
111 |
<!-- JavaScript -->
|
|
|
112 |
<script type="text/javascript" src="http://www.tela-botanica.org/commun/jquery/1.7.1/jquery-1.7.1.js"></script>
|
|
|
113 |
<script type="text/Javascript" src="http://www.tela-botanica.org/commun/jquery/cookie/1.0/jquery.cookie.min.js"></script>
|
|
|
114 |
<script type="text/javascript" src="http://www.tela-botanica.org/commun/jquery/jquery-ui/1.10.2/js/jquery-ui-1.10.2.custom.min.js"></script>
|
|
|
115 |
<script type="text/Javascript" src="http://www.tela-botanica.org/commun/jquery/fancybox/1.3.4/jquery.fancybox-1.3.4.pack.js"></script>
|
|
|
116 |
|
|
|
117 |
<script type="text/Javascript" src="http://www.tela-botanica.org/sites/commun/generique/scripts/commun.js"></script>
|
|
|
118 |
|
|
|
119 |
<script type="text/Javascript" src="../eflore/consultation/presentations/scripts/eflore.js"></script>
|
|
|
120 |
<script type="text/Javascript" src="../eflore/consultation/presentations/scripts/recherche.js"></script>
|
|
|
121 |
<script type="text/Javascript" src="../eflore/consultation/presentations/scripts/fiche-synthese.js"></script>
|
|
|
122 |
|
|
|
123 |
<!-- JavaScript et CSS spécifiques au module -->
|
|
|
124 |
<?php echo AppControleur::getEntete(); ?>
|
|
|
125 |
</head>
|
|
|
126 |
<?php
|
|
|
127 |
echo AppControleur::getContenuCorps();
|
|
|
128 |
|
|
|
129 |
|
|
|
130 |
?>
|