Squelette du support pour les différentes actions.
This commit is contained in:
parent
f06eb076f9
commit
3e101d22be
|
@ -13,12 +13,20 @@ require_once("types/galerie-evenement.php");
|
|||
require_once("types/galerie-photo.php");
|
||||
|
||||
class CMS {
|
||||
public static function affiche($chemin) {
|
||||
public static function affiche($chemin, $action = "afficher", $params=null) {
|
||||
if (is_null($params)) $params = array();
|
||||
|
||||
$p = Page::_new($chemin);
|
||||
|
||||
echo CMS::en_tete($p->chemin->get()) // TODO
|
||||
. $p->vue()
|
||||
. CMS::pied();
|
||||
if ($action == "nouvel_enfant") {
|
||||
$p->nouvel_enfant($params["titre"]);
|
||||
} else if ($action == "supprimer") {
|
||||
$p->supprimer($params["recursif"]);
|
||||
} else if ($action == "modifier") {
|
||||
// TODO : houlà...
|
||||
} else {
|
||||
$p->affiche();
|
||||
}
|
||||
}
|
||||
|
||||
public static function en_tete($titre) {
|
||||
|
|
|
@ -84,7 +84,7 @@ class Page {
|
|||
return self::_new($this->chemin->parent());
|
||||
}
|
||||
|
||||
public function nouveau($nom = "") {
|
||||
public function nouvel_enfant($nom = "") {
|
||||
// Si nom est null, utiliser "Article" + numéro
|
||||
// Créer un sous-dossier "nom"
|
||||
// L'initialiser avec le modèle donné dans __prop__modele_enfants
|
||||
|
@ -146,6 +146,12 @@ class Page {
|
|||
public function vue() {
|
||||
return "Aucune vue pour «" . $this->chemin->get() . "» .";
|
||||
}
|
||||
|
||||
public function affiche() {
|
||||
echo CMS::en_tete($this->chemin->get()) // TODO
|
||||
. $this->vue()
|
||||
. CMS::pied();
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
Loading…
Reference in New Issue
Block a user