Connexion / Déconnexion marchent !

This commit is contained in:
Georges Dupéron 2010-08-04 23:14:59 +02:00
parent 8fe3893871
commit a8f5c0189e
5 changed files with 35 additions and 28 deletions

View File

@ -8,7 +8,7 @@ class AdminConnexion {
} else { } else {
return self::vue($chemin, "connexion échouée"); return self::vue($chemin, "connexion échouée");
} }
} else if ($action == "déconnexion") { } else if ($action == "deconnexion") {
Authentification::déconnexion(); Authentification::déconnexion();
return self::vue($chemin, "déconnexion"); return self::vue($chemin, "déconnexion");
} else { } else {

View File

@ -10,12 +10,12 @@ class Modules {
"post" => qw($post), "post" => qw($post),
"file" => qw($file) "file" => qw($file)
); );
self::$liste_modules[$type]["get_post"][] = "action"; // Toujours présent. self::$liste_modules[$type]["get_post"][] = "action"; // Toujours présent.
} }
public static function get_module($chemin) { public static function get_module($chemin) {
$type = Stockage::get_prop($chemin, "type"); $type = Stockage::get_prop($chemin, "type");
if ($type === false || !isset(self::$liste_modules[$type])) { if (Erreur::is_erreur($type) || !isset(self::$liste_modules[$type])) {
Erreur::fatale("Type inconnu (" . var_export($type, true) . ") pour la page " . $chemin->get() . "."); Erreur::fatale("Type inconnu (" . var_export($type, true) . ") pour la page " . $chemin->get() . ".");
// return false; // return false;
} }

View File

@ -20,7 +20,7 @@ class Authentification {
} }
public static function est_connecté() { public static function est_connecté() {
return get_utilisateur() == "Anonyme"; return self::get_utilisateur() != "Anonyme";
} }
public static function déconnexion() { public static function déconnexion() {

View File

@ -28,7 +28,7 @@ class Erreur {
} }
public static function lecture($message) { public static function lecture($message) {
$t = new self("lecture", $message); return new self("lecture", $message);
} }
public function __construct($type, $message, $string = "[debug:erreur]") { public function __construct($type, $message, $string = "[debug:erreur]") {

View File

@ -12,29 +12,36 @@ class Squelette {
// TODO : chemin css relatif. // TODO : chemin css relatif.
$racine = new Chemin('/'); $racine = new Chemin('/');
$chemin_css = $racine->get_url('?vue=css'); $chemin_css = $racine->get_url('?vue=css');
return $nl = "\n";
'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> $ret = '';
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr"> $ret .= '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">' . $nl;
<head> $ret .= '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">' . $nl;
<title>' . $page->titre . '</title> $ret .= ' <head>' . $nl;
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> $ret .= ' <title>' . $page->titre . '</title>' . $nl;
<meta http-equiv="Content-Language" content="fr" /> $ret .= ' <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />' . $nl;
<link href="' . $chemin_css . '" rel="stylesheet" type="text/css" /> $ret .= ' <meta http-equiv="Content-Language" content="fr" />' . $nl;
</head> $ret .= ' <meta name="keywords" lang="fr" content="motcle1,mocle2" />' . $nl;
<body> $ret .= ' <meta name="description" content="Description de ma page web." />' . $nl;
<h1><a href="' . $racine->get_url() . '">' . Stockage::get_prop($racine, "nom_site") . '</a></h1> $ret .= ' <link href="' . $chemin_css . '" rel="stylesheet" type="text/css" />' . $nl;
<div class="site connexion"> $ret .= ' </head>' . $nl;
<a href="' . $racine->enfant("admin")->enfant("connexion")->get_url() . '">connexion</a> $ret .= ' <body>' . $nl;
</div> $ret .= ' <h1><a href="' . $racine->get_url() . '">' . Stockage::get_prop($racine, "nom_site") . '</a></h1>' . $nl;
<div class="site navigation"> $ret .= ' <div class="site connexion">' . $nl;
<ul>
<li><a href="' . $racine->enfant("galerie")->get_url() . '">Galerie</a></li> if (Authentification::est_connecté()) {
</ul> $ret .= '<a href="' . $racine->enfant("admin")->enfant("connexion")->get_url("?action=deconnexion") . '">déconnexion</a>' . $nl;
</div> } else {
<div class="site contenu"> $ret .= '<a href="' . $racine->enfant("admin")->enfant("connexion")->get_url() . '">connexion</a>' . $nl;
'; }
// <meta name="keywords" lang="fr" content="motcle1,mocle2" />
// <meta name="description" content="Description de ma page web." /> $ret .= ' </div>' . $nl;
$ret .= ' <div class="site navigation">' . $nl;
$ret .= ' <ul>' . $nl;
$ret .= ' <li><a href="' . $racine->enfant("galerie")->get_url() . '">Galerie</a></li>' . $nl;
$ret .= ' </ul>' . $nl;
$ret .= ' </div>' . $nl;
$ret .= ' <div class="site contenu">' . $nl;
return $ret;
} }
public static function pied() { public static function pied() {