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:
parent
08b9011475
commit
2f70385b90
|
@ -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()
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
require_once("../__cms__/cms.php");
|
||||
|
||||
CMS::affiche($_SERVER[REQUEST_URI]);
|
||||
CMS::affiche("/galerie");
|
||||
|
||||
?>
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
require_once("../../../__cms__/cms.php");
|
||||
|
||||
CMS::affiche($_SERVER[REQUEST_URI]);
|
||||
CMS::affiche("/galerie/periode 1/evenement a");
|
||||
|
||||
?>
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
require_once("../../../../__cms__/cms.php");
|
||||
|
||||
CMS::affiche($_SERVER[REQUEST_URI]);
|
||||
CMS::affiche("/galerie/periode 1/evenement a/photo a");
|
||||
|
||||
?>
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
require_once("../../../../__cms__/cms.php");
|
||||
|
||||
CMS::affiche($_SERVER[REQUEST_URI]);
|
||||
CMS::affiche("/galerie/periode 1/evenement a/photo b");
|
||||
|
||||
?>
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
require_once("../../../../__cms__/cms.php");
|
||||
|
||||
CMS::affiche($_SERVER[REQUEST_URI]);
|
||||
CMS::affiche("/galerie/periode 1/evenement a/photo c");
|
||||
|
||||
?>
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
require_once("../../__cms__/cms.php");
|
||||
|
||||
CMS::affiche($_SERVER[REQUEST_URI]);
|
||||
CMS::affiche("/galerie/periode 1");
|
||||
|
||||
?>
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
require_once("../../../__cms__/cms.php");
|
||||
|
||||
CMS::affiche($_SERVER[REQUEST_URI]);
|
||||
CMS::affiche("/galerie/periode 2/evenement machin");
|
||||
|
||||
?>
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
require_once("../../../../__cms__/cms.php");
|
||||
|
||||
CMS::affiche($_SERVER[REQUEST_URI]);
|
||||
CMS::affiche("/galerie/periode 2/evenement machin/photo a");
|
||||
|
||||
?>
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
require_once("../../../../__cms__/cms.php");
|
||||
|
||||
CMS::affiche($_SERVER[REQUEST_URI]);
|
||||
CMS::affiche("/galerie/periode 2/evenement machin/photo b");
|
||||
|
||||
?>
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
require_once("../../../../__cms__/cms.php");
|
||||
|
||||
CMS::affiche($_SERVER[REQUEST_URI]);
|
||||
CMS::affiche("/galerie/periode 2/evenement machin/photo c");
|
||||
|
||||
?>
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
require_once("../../../__cms__/cms.php");
|
||||
|
||||
CMS::affiche($_SERVER[REQUEST_URI]);
|
||||
CMS::affiche("/galerie/periode 2/evenement truc");
|
||||
|
||||
?>
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
require_once("../../../../__cms__/cms.php");
|
||||
|
||||
CMS::affiche($_SERVER[REQUEST_URI]);
|
||||
CMS::affiche("/galerie/periode 2/evenement truc/photo a");
|
||||
|
||||
?>
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
require_once("../../../../__cms__/cms.php");
|
||||
|
||||
CMS::affiche($_SERVER[REQUEST_URI]);
|
||||
CMS::affiche("/galerie/periode 2/evenement truc/photo b");
|
||||
|
||||
?>
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
require_once("../../../../__cms__/cms.php");
|
||||
|
||||
CMS::affiche($_SERVER[REQUEST_URI]);
|
||||
CMS::affiche("/galerie/periode 2/evenement truc/photo c");
|
||||
|
||||
?>
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
require_once("../../__cms__/cms.php");
|
||||
|
||||
CMS::affiche($_SERVER[REQUEST_URI]);
|
||||
CMS::affiche("/galerie/periode 2");
|
||||
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue
Block a user