From f69ce46d60dcba561bc564cd2fc2c507ab8f5eb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Sat, 9 Oct 2010 19:48:15 +0200 Subject: [PATCH] Type pour les attributs (text_line, text_rich, text_no_space, date, bool, file, ...). --- cms2/code/page.php | 28 ++++++++++++++++++-------- cms2/modules/galerie/galerie.php | 11 +++++----- cms2/modules/nouveautes/nouveautes.php | 8 ++++---- 3 files changed, 29 insertions(+), 18 deletions(-) diff --git a/cms2/code/page.php b/cms2/code/page.php index 1bb680d..0dceec2 100644 --- a/cms2/code/page.php +++ b/cms2/code/page.php @@ -24,12 +24,12 @@ class Page { // Comment spécifier que telle valeur référence telle autre (si on le spécifie, sinon c'est juste le widget qui fait la translation) ? public static function attributs() { return array( - "date_creation" => 0, - "date_modification" => 0, - "publier" => false, - "nom_systeme" => "", - "composant_url" => "page", - "groupe" => "main" + attribut("date_creation", "date", "0"), + attribut("date_modification", "date", "0"), + attribut("publier", "bool", "false"), + attribut("nom_systeme", "text_no_space", ""), + attribut("composant_url", "text_no_space", "page"), + attribut("groupe", "text_no_space", "main") // Groupe des enfants. ); } @@ -94,9 +94,15 @@ class Page { } public function lier_page($page_source, $groupe = "main") { - // ajouter un enfant contenant "@lien = page_source" et "@groupe = groupe" + // ajouter un enfant de type "Lien" (TODO: faire la classe Lien) + // contenant "@lien = $page_source" et "@groupe = $groupe" niy("lier_page"); } + + public static function page_systeme("$nom") { + // select from pages where nomSysteme = $nom limit 1 + niy("page_systeme"); + } public function __get($nom) { // s'il y a un getter (trigger), on l'appelle, sinon on appelle get_prop_direct(); @@ -127,7 +133,13 @@ class Page { // Modifie l'attribut "$nom" dans la BDD. niy("set direct $nom = $val"); } - } +} + +function attribut($nom, $type, $defaut) { + // TODO : si le type est inconnu, afficher une erreur. + // Un type <=> un widget. + return array($nom, $type, $defaut); +} class CollectionPages { public function size() { diff --git a/cms2/modules/galerie/galerie.php b/cms2/modules/galerie/galerie.php index b255bed..de1b223 100644 --- a/cms2/modules/galerie/galerie.php +++ b/cms2/modules/galerie/galerie.php @@ -13,14 +13,13 @@ abstract class GalerieBase extends Page { return qw("h_page h_miniature h_mini_miniature"); } public static function types_enfants() { - return qw("GalerieÉvènement"); + return qw("GalerieÉvènement Lien"); } public static function attributs() { return array( - "titre" => self::$texte_titre, - "description" => "", - "personnes" => LIENS, // TODO - "dans_nouveautes" => "true" + attribut("titre", "text_line", self::$texte_titre), + attribut("description", "text_rich", ""), + attribut("dans_nouveautes", "bool", "true") ); } @@ -101,7 +100,7 @@ class GaleriePhoto { } public static function attributs() { $a = parent::attributs(); - $a["image"] = null; // TODO !! TODO !! TODO + array_push($a, attribut("image", "file", "")); return $a; } diff --git a/cms2/modules/nouveautes/nouveautes.php b/cms2/modules/nouveautes/nouveautes.php index eaf7c89..634f144 100644 --- a/cms2/modules/nouveautes/nouveautes.php +++ b/cms2/modules/nouveautes/nouveautes.php @@ -1,6 +1,6 @@ self::$texte_titre, - "description" => "", + attribut("titre", "text_line", self::$texte_titre), + attribut("description", "text_rich", "") ); }