Enfin quelque chose à l'écran !

This commit is contained in:
Georges Dupéron 2010-08-03 03:18:07 +02:00
parent d2d351c081
commit 3f8c725ca1
3 changed files with 17 additions and 7 deletions

View File

@ -10,13 +10,22 @@ class CMS {
// TODO : appeller Modules::action($chemin, $action, $paramètres);
$chemin = new Chemin($chemin_str);
$noms_params = Modules::get_module($chemin);
$noms_params["get_post"][] = "action";
$module = Modules::get_module($chemin);
$paramètres = array("action" => "vue");
// récupérer $noms_params dans $_GET, $_POST et $_FILE ==> $paramètres
foreach ($module["get_post"] as $param) {
if (isset($_GET[$param])) $paramètres[$param] = $_GET[$param];
if (isset($_POST[$param])) $paramètres[$param] = $_POST[$param];
}
foreach ($module["post"] as $param) {
if (isset($_POST[$param])) $paramètres[$param] = $_POST[$param];
}
foreach ($module["file"] as $param) {
if (isset($_FILE[$param])) $paramètres[$param] = $_FILE[$param];
}
$action = $paramètres["action"];
Modules::action($chemin, $action, $paramètres);
echo "OK.";
echo Modules::action($chemin, $action, $paramètres);
}
}

View File

@ -22,9 +22,9 @@ class GalerieIndex {
}
if (isset($paramètres["vue"])) {
self::vue($chemin, $paramètres["vue"]);
return self::vue($chemin, $paramètres["vue"]);
} else {
self::vue($chemin);
return self::vue($chemin);
}
}
}

View File

@ -10,6 +10,7 @@ class Modules {
"post" => qw($post),
"file" => qw($file)
);
self::$liste_modules[$type]["get_post"][] = "action"; // Toujours présent.
}
public static function get_module($chemin) {