5 |
aurelien |
1 |
<?php
|
111 |
aurelien |
2 |
/** Inclusion du fichier principal de l'application (administrations des administrateurs)*/
|
105 |
aurelien |
3 |
require_once 'admin_administrateur.php';
|
|
|
4 |
$contenu_navigation = afficherContenuNavigation();
|
|
|
5 |
$contenu_tete = afficherContenuTete();
|
|
|
6 |
$contenu_corps = afficherContenuCorps();
|
|
|
7 |
$titre = "";
|
|
|
8 |
$contenu_pied = afficherContenuPied();
|
|
|
9 |
$contenu_menu = afficherContenuMenu();
|
120 |
aurelien |
10 |
$erreurs = GestionnaireException::getExceptions();
|
105 |
aurelien |
11 |
?>
|
|
|
12 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
13 |
<html xmlns="http://www.w3.org/1999/xhtml" >
|
120 |
aurelien |
14 |
<head xml:lang="fr" lang="fr">
|
|
|
15 |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
16 |
<meta http-equiv="Content-style-type" content="text/css" />
|
|
|
17 |
<meta http-equiv="Content-script-type" content="text/javascript" />
|
|
|
18 |
<meta http-equiv="Content-language" content="fr" />
|
|
|
19 |
|
|
|
20 |
<title><?php echo $titre; ?></title>
|
|
|
21 |
|
|
|
22 |
<meta name="revisit-after" content="15 days" />
|
|
|
23 |
<meta name="robots" content="index,follow" />
|
|
|
24 |
<meta name="author" content="Tela Botanica" />
|
|
|
25 |
|
|
|
26 |
<style type="text/css" media="screen">
|
|
|
27 |
/*--------------------------------------------------------------------------------------------------------------*/
|
|
|
28 |
/* Tableau du chronométrage du programme */
|
|
|
29 |
#pied_texte #chrono {
|
|
|
30 |
text-align: center;
|
|
|
31 |
margin:0 auto;}
|
|
|
32 |
#chrono table {
|
|
|
33 |
display:block;
|
|
|
34 |
border:3px solid #6495ed;
|
|
|
35 |
border-collapse:collapse;}
|
|
|
36 |
#chrono thead, tfoot {
|
|
|
37 |
background-color:#D0E3FA;
|
|
|
38 |
border:1px solid #6495ed;}
|
|
|
39 |
#chrono tbody {
|
|
|
40 |
background-color:#FFFFFF;
|
|
|
41 |
border:1px solid #6495ed;}
|
|
|
42 |
#chrono th {
|
|
|
43 |
font-family:monospace;
|
|
|
44 |
border:1px dotted #6495ed;
|
|
|
45 |
padding:5px;
|
|
|
46 |
background-color:#EFF6FF;
|
|
|
47 |
width:25%;}
|
|
|
48 |
#chrono td {
|
|
|
49 |
font-family:sans-serif;
|
|
|
50 |
font-size:80%;
|
|
|
51 |
border:1px solid #6495ed;
|
|
|
52 |
padding:5px;
|
|
|
53 |
text-align:center;}
|
|
|
54 |
#chrono caption {
|
|
|
55 |
font-family:sans-serif;
|
|
|
56 |
text-align: center;
|
|
|
57 |
width:90%;
|
|
|
58 |
margin:auto;}
|
|
|
59 |
.debogage{
|
|
|
60 |
color:black;
|
|
|
61 |
border:3px solid #6495ed;}
|
|
|
62 |
.debogage_fichier, .debogage_ligne{
|
|
|
63 |
font-size:10px;
|
|
|
64 |
color:#A9A9A9;}
|
|
|
65 |
</style>
|
|
|
66 |
<link rel="shortcut icon" type="image/x-icon" href="http://www.tela-botanica.org/favicon.ico" />
|
|
|
67 |
<link rel="icon" type="image/png" href="http://www.tela-botanica.org/sites/commun/generique/images/favicones/tela_botanica.png" />
|
|
|
68 |
</head>
|
|
|
69 |
<body xml:lang="fr" lang="fr">
|
|
|
70 |
<div id="reducteur">
|
|
|
71 |
<div id="logo_tela">
|
|
|
72 |
<a href="/" title="Retour à l'accueil du site">
|
|
|
73 |
<img src="http://www.tela-botanica.org/sites/reseau/generique/images/graphisme/logo_jaune.gif" alt="le logo de Tela Botanica"/>
|
|
|
74 |
</a>
|
|
|
75 |
</div>
|
|
|
76 |
|
|
|
77 |
<div id="droite">
|
|
|
78 |
<div id="onglets">
|
|
|
79 |
<?php echo $contenu_navigation; ?>
|
|
|
80 |
</div>
|
|
|
81 |
<div id="contenu">
|
|
|
82 |
<div id="entete">
|
|
|
83 |
<?php echo $contenu_tete; ?>
|
|
|
84 |
</div>
|
|
|
85 |
<div id="texte">
|
|
|
86 |
<?php echo $contenu_corps; ?>
|
|
|
87 |
</div>
|
|
|
88 |
<div id="pied_texte">
|
|
|
89 |
<?php
|
|
|
90 |
echo $contenu_pied;
|
|
|
91 |
?>
|
|
|
92 |
</div>
|
|
|
93 |
</div>
|
|
|
94 |
</div>
|
|
|
95 |
<div>
|
|
|
96 |
<?php echo $erreurs; ?>
|
|
|
97 |
</div>
|
|
|
98 |
<div id="pied">
|
|
|
99 |
<p> ©<a href="http://www.tela-botanica.org/" accesskey="1">Tela Botanica</a> / 2000-2004 - Le réseau des Botanistes Francophones</p>
|
|
|
100 |
</div>
|
|
|
101 |
</div>
|
|
|
102 |
</body>
|
105 |
aurelien |
103 |
</html>
|