-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
42 lines (39 loc) · 1.12 KB
/
header.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
<?php
$menuLink = array("accueil" => "Accueil", "gerer_public" => "Toutes les listes", "contact" => "Contact");
if(isset($_SESSION['login'])) {
$menuLink["membre"] = "Espace Membre";
$menuLink["gerer_listes"] = "Vos listes";
$menuLink["deconnexion"] = "Déconnexion";
} else {
$menuLink["categories"] = "Catégories";
$menuLink["connexion"] = "Connexion";
$menuLink["inscription"] = "Inscription";
}
?>
<!-- Début du header -->
<div id="header">
<div id="logo">
<a href="index.php"><img src="images/logo.png" alt="Your-Voc" title="Your-Voc" /></a>
</div>
<div id="menu">
<div id="url">
<?php foreach ($menuLink as $key=>$link) { ?>
<a href="<?php echo $key;?>"><?php echo $link;?></a>
<?php } ?>
</div>
</div>
</div>
<!--Fin du header !-->
<?php
// Le mec n'est pas connecté mais les cookies sont là, on y va !
$id_auto = getIdCookie();
if($id_auto != null){
$membre = getMembreById($id_auto);
if ($membre != null) {
if (isCookieValid($membre)) {
// On enregistre les informations dans la session
$_SESSION['login'] = $membre->login();
}
}
}
?>