CSS et page d'accueil (très incomplète).
This commit is contained in:
parent
f6bcc3fd64
commit
3f6d8dd1d9
|
@ -46,14 +46,16 @@ class Chemin {
|
||||||
|
|
||||||
// Invariant de sécurité : la chaîne renvoyée ne commence ni ne
|
// Invariant de sécurité : la chaîne renvoyée ne commence ni ne
|
||||||
// termine par '/'.
|
// termine par '/'.
|
||||||
public function get($slash_debut = false) {
|
public function get($slash_debut = true) {
|
||||||
return ($slash_debut ? '/' : '') . join($this->segments, '/');
|
return ($slash_debut ? '/' : '') . join($this->segments, '/');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get_url($fin = "") {
|
public function get_url($fin = "") {
|
||||||
// Config::get("url_base") DOIT se terminer par '/', tel que spécifié
|
// Config::get("url_base") DOIT se terminer par '/', tel que spécifié
|
||||||
// dans config.php.
|
// dans config.php.
|
||||||
return Config::get("url_base") . $this->get() . '/' . $fin;
|
$ch = $this->get(false) . "/";
|
||||||
|
if ($ch == '/') $ch = '';
|
||||||
|
return Config::get("url_base") . $ch . $fin;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get_fs_stockage() {
|
public function get_fs_stockage() {
|
||||||
|
|
|
@ -13,6 +13,8 @@ class Page {
|
||||||
$this->set_page($a, $b);
|
$this->set_page($a, $b);
|
||||||
} else if ($type == "sendfile") {
|
} else if ($type == "sendfile") {
|
||||||
$this->set_sendfile($a, $b);
|
$this->set_sendfile($a, $b);
|
||||||
|
} else if ($type == "raw") {
|
||||||
|
$this->set_raw($a, $b);
|
||||||
} else if ($type == "redirect") {
|
} else if ($type == "redirect") {
|
||||||
$this->set_redirect($a, $b);
|
$this->set_redirect($a, $b);
|
||||||
}
|
}
|
||||||
|
@ -30,6 +32,12 @@ class Page {
|
||||||
$this->type = "sendfile";
|
$this->type = "sendfile";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function set_raw($données, $mime) {
|
||||||
|
$this->raw_données = $données;
|
||||||
|
$this->raw_mime = $mime;
|
||||||
|
$this->type = "raw";
|
||||||
|
}
|
||||||
|
|
||||||
public function set_redirect($destination, $params = "") {
|
public function set_redirect($destination, $params = "") {
|
||||||
if (!is_string($destination)) $destination = $destination->get_url();
|
if (!is_string($destination)) $destination = $destination->get_url();
|
||||||
$this->redirect_destination = $destination . $params;
|
$this->redirect_destination = $destination . $params;
|
||||||
|
@ -42,11 +50,15 @@ class Page {
|
||||||
echo Squelette::enrober($this);
|
echo Squelette::enrober($this);
|
||||||
} else if ($this->type == "sendfile") {
|
} else if ($this->type == "sendfile") {
|
||||||
Stockage::get_prop_sendfile($this->sendfile_chemin, $this->sendfile_prop);
|
Stockage::get_prop_sendfile($this->sendfile_chemin, $this->sendfile_prop);
|
||||||
|
} else if ($this->type == "raw") {
|
||||||
|
header("Content-Type: " . $this->raw_mime);
|
||||||
|
echo $this->raw_données;
|
||||||
} else if ($this->type == "redirect") {
|
} else if ($this->type == "redirect") {
|
||||||
echo "TODO : Redirection vers <a href=\""
|
echo "TODO : Redirection vers <a href=\""
|
||||||
. $this->redirect_destination . "\">"
|
. $this->redirect_destination . "\">"
|
||||||
. $this->redirect_destination . "</a>";
|
. $this->redirect_destination . "</a>";
|
||||||
}
|
}
|
||||||
|
// TODO : else erreur
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -46,7 +46,7 @@ class GaleriePhoto {
|
||||||
$ret .= affichage_texte_enrichi(Stockage::get_prop($chemin, "message"));
|
$ret .= affichage_texte_enrichi(Stockage::get_prop($chemin, "message"));
|
||||||
}
|
}
|
||||||
return new Page($ret, Stockage::get_prop($chemin, "titre"));
|
return new Page($ret, Stockage::get_prop($chemin, "titre"));
|
||||||
} else if ($vue == "miniature") {
|
} else if ($vue == "miniature" || $vue == "mini") {
|
||||||
$ret = '<img src="' . $chemin->get_url("?vue=image_mini") . '"></img>';
|
$ret = '<img src="' . $chemin->get_url("?vue=image_mini") . '"></img>';
|
||||||
|
|
||||||
return new Page($ret, Stockage::get_prop($chemin, "titre"));
|
return new Page($ret, Stockage::get_prop($chemin, "titre"));
|
||||||
|
@ -55,6 +55,7 @@ class GaleriePhoto {
|
||||||
} else if ($vue == "image_mini") {
|
} else if ($vue == "image_mini") {
|
||||||
return new Page($chemin, "image_mini", "sendfile");
|
return new Page($chemin, "image_mini", "sendfile");
|
||||||
}
|
}
|
||||||
|
return new Page('',''); // TODO : devrait renvoyer une page d'erreur !
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
require_once(dirname(__FILE__) . "/modules.php");
|
require_once(dirname(__FILE__) . "/modules.php");
|
||||||
|
|
||||||
|
require_once(dirname(__FILE__) . "/site/include.php");
|
||||||
require_once(dirname(__FILE__) . "/admin/include.php");
|
require_once(dirname(__FILE__) . "/admin/include.php");
|
||||||
require_once(dirname(__FILE__) . "/forum/include.php");
|
require_once(dirname(__FILE__) . "/forum/include.php");
|
||||||
require_once(dirname(__FILE__) . "/galerie/include.php");
|
require_once(dirname(__FILE__) . "/galerie/include.php");
|
||||||
|
|
5
__cms__/code/modules/site/include.php
Normal file
5
__cms__/code/modules/site/include.php
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
require_once(dirname(__FILE__) . "/site-index.php");
|
||||||
|
|
||||||
|
?>
|
33
__cms__/code/modules/site/site-index.php
Normal file
33
__cms__/code/modules/site/site-index.php
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
class SiteIndex {
|
||||||
|
public static function action($chemin, $action, $paramètres) {
|
||||||
|
if (isset($paramètres["nom_site"])) {
|
||||||
|
Stockage::set_prop($chemin, "nom_site", $paramètres["nom_site"]);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isset($paramètres["vue"])) {
|
||||||
|
return self::vue($chemin, $paramètres["vue"]);
|
||||||
|
} else {
|
||||||
|
return self::vue($chemin);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function vue($chemin, $vue = "normal") {
|
||||||
|
if ($vue == "normal") {
|
||||||
|
$ret = '';
|
||||||
|
$ret .= "<h1>" . Stockage::get_prop($chemin, "nom_site") . "</h1>";
|
||||||
|
$ret .= "<ul>";
|
||||||
|
$ret .= "<li><a href=\"" . $chemin->enfant("galerie")->get_url() . "\">Galerie</a>";
|
||||||
|
$ret .= "</ul>";
|
||||||
|
return new Page($ret, Stockage::get_prop($chemin, "nom_site"));
|
||||||
|
} else if ($vue == "css") {
|
||||||
|
return new Page(get_css(), "text/css", "raw");
|
||||||
|
}
|
||||||
|
return new Page('',''); // TODO : devrait renvoyer une page d'erreur !
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Modules::enregister_module("SiteIndex", "site-index", "vue", "titre");
|
||||||
|
|
||||||
|
?>
|
|
@ -1,4 +1,7 @@
|
||||||
.galerie img {
|
<?php
|
||||||
|
|
||||||
|
function get_css() {
|
||||||
|
return ".galerie img {
|
||||||
border: thin solid black;
|
border: thin solid black;
|
||||||
padding: 0.1em;
|
padding: 0.1em;
|
||||||
}
|
}
|
||||||
|
@ -10,4 +13,5 @@
|
||||||
.galerie li {
|
.galerie li {
|
||||||
float: left;
|
float: left;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
|
}";
|
||||||
}
|
}
|
|
@ -1,5 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
require_once(dirname(__FILE__) . "/css.php");
|
||||||
require_once(dirname(__FILE__) . "/squelette.php");
|
require_once(dirname(__FILE__) . "/squelette.php");
|
||||||
|
|
||||||
?>
|
?>
|
|
@ -9,6 +9,9 @@ class Squelette {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function en_tete($page) {
|
public static function en_tete($page) {
|
||||||
|
// TODO : chemin css relatif.
|
||||||
|
$chemin_css = new Chemin('/');
|
||||||
|
$chemin_css = $chemin_css->get_url('?vue=css');
|
||||||
return
|
return
|
||||||
'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
|
||||||
|
@ -16,7 +19,7 @@ class Squelette {
|
||||||
<title>' . $page->titre . '</title>
|
<title>' . $page->titre . '</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<meta http-equiv="Content-Language" content="fr" />
|
<meta http-equiv="Content-Language" content="fr" />
|
||||||
<link href="../style.css" rel="stylesheet" type="text/css" /><!-- TODO : chemin incorrect -->
|
<link href="' . $chemin_css . '" rel="stylesheet" type="text/css" />
|
||||||
</head>
|
</head>
|
||||||
<body>';
|
<body>';
|
||||||
// <meta name="keywords" lang="fr" content="motcle1,mocle2" />
|
// <meta name="keywords" lang="fr" content="motcle1,mocle2" />
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
galerie-index
|
site-index
|
Loading…
Reference in New Issue
Block a user