Type pour les attributs (text_line, text_rich, text_no_space, date, bool, file, ...).

This commit is contained in:
Georges Dupéron 2010-10-09 19:48:15 +02:00
parent e2093ed37a
commit f69ce46d60
3 changed files with 29 additions and 18 deletions

View File

@ -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() {

View File

@ -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;
}

View File

@ -1,6 +1,6 @@
<?php
abstract class Nouveautes extends Page {
class Nouveautes extends Page {
protected static $texte_titre = "Nouveautés";
protected static $texte_nouvelle_page = "Ajouter un article aux nouveautés";
protected static $icône_nouvelle_page = "nouvelle_source.png";
@ -12,12 +12,12 @@ abstract class Nouveautes extends Page {
return qw("h_page");
}
public static function types_enfants() {
return qw("NouveautesSource");
return qw("Lien");
}
public static function attributs() {
return array(
"titre" => self::$texte_titre,
"description" => "",
attribut("titre", "text_line", self::$texte_titre),
attribut("description", "text_rich", "")
);
}