-
Notifications
You must be signed in to change notification settings - Fork 0
/
accueil.php
188 lines (170 loc) · 7.53 KB
/
accueil.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<?php
require_once('./config/config.php');
$niveau_visa = $mcr;
include('./include/version.php');
include('./include/securite.php');
isset($_GET['formu']) ? $lstformu = $_GET['formu'] : $lstformu = '' ;
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Alienor Web Libre</title>
<link href="style/style_awl.css" rel="stylesheet" type="text/css">
<script type="text/javascript">
<!--
function routage(ident) {
(ident == 'mr') ? param = '' : param = '?noFiche=0' ;
if (ident == 'ms' && document.box.masques.value == 'gestion') {
alert('La \"gestion\" n\'est pas disponible en saisie directe ');
} else {
url = '/alienorweblibre/masques/' + ident + '_' + document.box.masques.value + '.php' + param;
// document.write('URL =' + url);
window.open(url);
}
}
function recharge_page() {
var query = location.search.substring(1);
if (arguments.length == 1) query = change_query(query, arguments[0]);
else {
for (var i=0;i<arguments.length;i++) query = change_query(query, arguments[i]);
}
location.href = location.pathname + (query ? "?" + query : "");
}
function change_query(query, param) {
// d�coupe param "variable=valeur" en variable et valeur
var pos = param.indexOf("=");
if (pos == -1) {
var variable = param;
var valeur = "";
} else {
var variable = param.substring(0, pos+1); // "variable="
if (pos == param.length-1) var valeur = "";
else var valeur = param.substring(pos+1); // "valeur"
}
if (variable == "*") query = "";
// si on a d�j� des param�tres
else if (query) {
// la variable n'est pas trouv�e dans la cha�ne query : on rajoute param au query
if (query.indexOf(variable) == -1) query += valeur ? "&" + param : "";
// sinon, il se peut qu'elle y ait, mais on peut avoir aussi "id_page=" alors qu'on cherche "page="
else {
var params = query.split("&");
var num_param = ordre_param(params, variable.substring(0, variable.length-1));
// si le param�tre n'existe pas d�j� dans le query, on le rajoute � la fin
if (num_param == -1) query += valeur ? "&" + param : "";
// sinon on le change ou on le supprime (si valeur est vide)
else {
if (valeur) params[num_param] = param;
else params.splice(num_param, 1);
query = params.length ? params.join("&") : "";
}
}
}
// on n'a pas de param�tre actuellement, le query = le param
else if (valeur) query = param;
return query;
}
function ordre_param(params, variable) {
var i = 0;
while (i<params.length) {
var elts_param = params[i].split("=");
if (elts_param[0] == variable) break;
else i++;
}
if (i == params.length) return -1;
else return i;
}
//-->
</script>
</head>
<body>
<div id="accueil">
<h1><span class="invisible">Alienor Web Libre</span></h1>
</div>
<div align="center"><img src="images/logo_cirm.jpg" alt="Logo du Conseil Interrégional des musées" width="195" height="113" style="border:none"></div>
<div id="parametre"> <br>
<p style="text-align:center; font-weight:bold"><?php echo $_SESSION["prenom"]." ".$_SESSION["nom"]; ?></p>
<p style="text-align:center; font-weight:bold"><?php echo $_SESSION["musee"]; ?></p>
<p>Table :</p>
<div style="text-align:center"> <a href="accueil.php?formu=objet"><img src="images/objets.gif" width="36" height="36" alt="Objets" style="border:none"></a> <a href="accueil.php?formu=personnes"><img src="/alienorweblibre/images/personnes.gif" width="36" height="36" alt="Personnes" style="border:none"></a> <a href="accueil.php?formu=lieux"><img src="/alienorweblibre/images/lieux.gif" width="36" height="36" alt="Lieux" style="border:none"></a> <a href="accueil.php?formu=documentations"><img src="/alienorweblibre/images/documentations.gif" width="36" height="36" alt="Documentations" style="border:none"></a> <a href="accueil.php?formu=gestion"><img src="/alienorweblibre/images/gestion.gif" width="36" height="36" alt="Gestion" style="border:none"></a> </div>
</div>
<?php
/*
debug
require_once('./include/GestionConfig.class.php');
$gestion = new GestionConfig("../config/config.txt");
echo $gestion->__toString()."<br><br><br>";
echo $gestion->chemin()."<br><br><br>";
echo dirname(__FILE__)."<br><br><br>";
print_r(parse_ini_file("/home/alexandre/dev/php/alienorweblibre/include/../config/config.txt"));
print_r($_SESSION);
*/
?>
<div id="boite">
<p>Masque :</p>
<div align="center">
<form name="box" action="accueil.php">
<?php
switch ($lstformu) {
case "personnes" : ?>
<select name="masques" style="background: #EEEEEE" title="Sélection des masques des personnes">
<option value="personne" selected>Personne physique</option>
<option value="persmor">Personne morale</option>
<option value="grphumain">Groupe Humain</option>
</select>
<?php break;
case "lieux" : ?>
<select name="masques" style="background: #EEEEEE" title="Sélection du masque des lieux">
<option value="lieu" selected>Lieux</option>
</select>
<?php break;
case "documentations" : ?>
<select name="masques" style="background: #EEEEEE" title="Sélection des masques des documentations">
<option value="documentation" selected>Documentation</option>
<option value="exposition">Exposition</option>
<option value="docphoto">Photo</option>
<option value="edition">Édition</option>
</select>
<?php break;
case "gestion" : ?>
<select name="masques" style="background: #EEEEEE" title="Sélection du masque de gestion">
<option value="gestion" selected>Gestion</option>
</select>
<?php break;
default : ?>
<select name="masques" style="background: #EEEEEE" title="Sélection des masques des objets">
<option value="ethno" selected>Ethnographie</option>
<option value="ba">Art</option>
<option value="archeo">Archéologie</option>
<option value="litho">Lithothèque</option>
<option value="vivant">Vivant</option>
</select>
<?php } ?>
</form>
</div>
</div>
<div id="action">
<a href="javascript:routage('mr');">
Rechercher
<img src="images/rech_form.jpg" alt="Rechercher par critères" width="48" height="48" border="0" style="border:1px solid #000000">
</a>
<a href="javascript:routage('ms');">
Créer
<img src="/alienorweblibre/images/creer_ligne.jpg" alt="Créer une fiche" width="48" height="48" border="0" style="border:1px solid #000000">
</a>
<img src="/alienorweblibre/images/gest_edition.jpg" alt="Afficher les cartels" width="48" height="48" style="border:1px solid #000000">
<a href="https://bases.alienor.org/leconseiller/index.htm" target="_blank">
Accueil
<img src="/alienorweblibre/images/aide.jpg" alt="Accès à l'aide en ligne" width="48" height="48" border="0" style="border:1px solid #000000">
</a>
<a href="deconnexion.php" target="_self">
Déconnexion
<img src="images/deconnection.jpg" alt="Se déconnecter" width="48" height="48" border="0" style="border:1px solid #000000;">
</a>
</div>
<div id="bas">
<p class="copyright">© Copyright Alienor Web Libre <?php echo $version?></p>
</div>
</body>
</html>