La fonction affiche est appellée avec le bon chemin au lieu d'une uri.

Chaque index.php (chaque page du site) s'en charge. Puisqu'ils sont générés automatiquement, on peut bien choisir le chemin correct au moment de la création.

C'est beaucoup plus simple que des manipulations bizarres sur des URI pour en extraire le chemin interne.

Keep It Simple and Stupid.
This commit is contained in:
Georges Dupéron 2010-07-05 12:29:37 +02:00
parent 08b9011475
commit 2f70385b90
17 changed files with 20 additions and 32 deletions

View File

@ -3,6 +3,8 @@
// Tous les chemins pour les include sont relatifs à __cms__ .
chdir(dirname(__FILE__));
require_once("util.php");
require_once("path.php");
require_once("controleur/page.php");
require_once("types/galerie.php");
@ -11,22 +13,8 @@ require_once("types/galerie-evenement.php");
require_once("types/galerie-photo.php");
class CMS {
public static function uri_vers_chemin($uri) {
global $config_url_base;
// TODO : Pas propre !
$base = "/" . preg_replace("/^https?:\/\/[^\/]*\//", "", $config_url_base, 1);
$uri = urldecode($uri);
if (strpos($uri, $base) == 0) {
$uri = '/' . substr($uri, strlen($base));
}
$uri = preg_replace("/\/?index.php$/", "/", $uri, 1);
return $uri;
}
public static function affiche($uri) {
$p = Page::_new(CMS::uri_vers_chemin($uri));
public static function affiche($chemin) {
$p = Page::_new($chemin);
echo CMS::en_tete($p->chemin->get()) // TODO
. $p->vue()

View File

@ -2,6 +2,6 @@
require_once("../__cms__/cms.php");
CMS::affiche($_SERVER[REQUEST_URI]);
CMS::affiche("/galerie");
?>

View File

@ -2,6 +2,6 @@
require_once("../../../__cms__/cms.php");
CMS::affiche($_SERVER[REQUEST_URI]);
CMS::affiche("/galerie/periode 1/evenement a");
?>

View File

@ -2,6 +2,6 @@
require_once("../../../../__cms__/cms.php");
CMS::affiche($_SERVER[REQUEST_URI]);
CMS::affiche("/galerie/periode 1/evenement a/photo a");
?>

View File

@ -2,6 +2,6 @@
require_once("../../../../__cms__/cms.php");
CMS::affiche($_SERVER[REQUEST_URI]);
CMS::affiche("/galerie/periode 1/evenement a/photo b");
?>

View File

@ -2,6 +2,6 @@
require_once("../../../../__cms__/cms.php");
CMS::affiche($_SERVER[REQUEST_URI]);
CMS::affiche("/galerie/periode 1/evenement a/photo c");
?>

View File

@ -2,6 +2,6 @@
require_once("../../__cms__/cms.php");
CMS::affiche($_SERVER[REQUEST_URI]);
CMS::affiche("/galerie/periode 1");
?>

View File

@ -2,6 +2,6 @@
require_once("../../../__cms__/cms.php");
CMS::affiche($_SERVER[REQUEST_URI]);
CMS::affiche("/galerie/periode 2/evenement machin");
?>

View File

@ -2,6 +2,6 @@
require_once("../../../../__cms__/cms.php");
CMS::affiche($_SERVER[REQUEST_URI]);
CMS::affiche("/galerie/periode 2/evenement machin/photo a");
?>

View File

@ -2,6 +2,6 @@
require_once("../../../../__cms__/cms.php");
CMS::affiche($_SERVER[REQUEST_URI]);
CMS::affiche("/galerie/periode 2/evenement machin/photo b");
?>

View File

@ -2,6 +2,6 @@
require_once("../../../../__cms__/cms.php");
CMS::affiche($_SERVER[REQUEST_URI]);
CMS::affiche("/galerie/periode 2/evenement machin/photo c");
?>

View File

@ -2,6 +2,6 @@
require_once("../../../__cms__/cms.php");
CMS::affiche($_SERVER[REQUEST_URI]);
CMS::affiche("/galerie/periode 2/evenement truc");
?>

View File

@ -2,6 +2,6 @@
require_once("../../../../__cms__/cms.php");
CMS::affiche($_SERVER[REQUEST_URI]);
CMS::affiche("/galerie/periode 2/evenement truc/photo a");
?>

View File

@ -2,6 +2,6 @@
require_once("../../../../__cms__/cms.php");
CMS::affiche($_SERVER[REQUEST_URI]);
CMS::affiche("/galerie/periode 2/evenement truc/photo b");
?>

View File

@ -2,6 +2,6 @@
require_once("../../../../__cms__/cms.php");
CMS::affiche($_SERVER[REQUEST_URI]);
CMS::affiche("/galerie/periode 2/evenement truc/photo c");
?>

View File

@ -2,6 +2,6 @@
require_once("../../__cms__/cms.php");
CMS::affiche($_SERVER[REQUEST_URI]);
CMS::affiche("/galerie/periode 2");
?>

View File

@ -2,6 +2,6 @@
require_once("__cms__/cms.php");
CMS::affiche($_SERVER[REQUEST_URI]);
CMS::affiche('/');
?>