Type pour les attributs (text_line, text_rich, text_no_space, date, bool, file, ...).
This commit is contained in:
parent
e2093ed37a
commit
f69ce46d60
|
@ -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) ?
|
// 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() {
|
public static function attributs() {
|
||||||
return array(
|
return array(
|
||||||
"date_creation" => 0,
|
attribut("date_creation", "date", "0"),
|
||||||
"date_modification" => 0,
|
attribut("date_modification", "date", "0"),
|
||||||
"publier" => false,
|
attribut("publier", "bool", "false"),
|
||||||
"nom_systeme" => "",
|
attribut("nom_systeme", "text_no_space", ""),
|
||||||
"composant_url" => "page",
|
attribut("composant_url", "text_no_space", "page"),
|
||||||
"groupe" => "main"
|
attribut("groupe", "text_no_space", "main") // Groupe des enfants.
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -94,9 +94,15 @@ class Page {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function lier_page($page_source, $groupe = "main") {
|
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");
|
niy("lier_page");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static function page_systeme("$nom") {
|
||||||
|
// select from pages where nomSysteme = $nom limit 1
|
||||||
|
niy("page_systeme");
|
||||||
|
}
|
||||||
|
|
||||||
public function __get($nom) {
|
public function __get($nom) {
|
||||||
// s'il y a un getter (trigger), on l'appelle, sinon on appelle get_prop_direct();
|
// 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.
|
// Modifie l'attribut "$nom" dans la BDD.
|
||||||
niy("set direct $nom = $val");
|
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 {
|
class CollectionPages {
|
||||||
public function size() {
|
public function size() {
|
||||||
|
|
|
@ -13,14 +13,13 @@ abstract class GalerieBase extends Page {
|
||||||
return qw("h_page h_miniature h_mini_miniature");
|
return qw("h_page h_miniature h_mini_miniature");
|
||||||
}
|
}
|
||||||
public static function types_enfants() {
|
public static function types_enfants() {
|
||||||
return qw("GalerieÉvènement");
|
return qw("GalerieÉvènement Lien");
|
||||||
}
|
}
|
||||||
public static function attributs() {
|
public static function attributs() {
|
||||||
return array(
|
return array(
|
||||||
"titre" => self::$texte_titre,
|
attribut("titre", "text_line", self::$texte_titre),
|
||||||
"description" => "",
|
attribut("description", "text_rich", ""),
|
||||||
"personnes" => LIENS, // TODO
|
attribut("dans_nouveautes", "bool", "true")
|
||||||
"dans_nouveautes" => "true"
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -101,7 +100,7 @@ class GaleriePhoto {
|
||||||
}
|
}
|
||||||
public static function attributs() {
|
public static function attributs() {
|
||||||
$a = parent::attributs();
|
$a = parent::attributs();
|
||||||
$a["image"] = null; // TODO !! TODO !! TODO
|
array_push($a, attribut("image", "file", ""));
|
||||||
return $a;
|
return $a;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
abstract class Nouveautes extends Page {
|
class Nouveautes extends Page {
|
||||||
protected static $texte_titre = "Nouveautés";
|
protected static $texte_titre = "Nouveautés";
|
||||||
protected static $texte_nouvelle_page = "Ajouter un article aux nouveautés";
|
protected static $texte_nouvelle_page = "Ajouter un article aux nouveautés";
|
||||||
protected static $icône_nouvelle_page = "nouvelle_source.png";
|
protected static $icône_nouvelle_page = "nouvelle_source.png";
|
||||||
|
@ -12,12 +12,12 @@ abstract class Nouveautes extends Page {
|
||||||
return qw("h_page");
|
return qw("h_page");
|
||||||
}
|
}
|
||||||
public static function types_enfants() {
|
public static function types_enfants() {
|
||||||
return qw("NouveautesSource");
|
return qw("Lien");
|
||||||
}
|
}
|
||||||
public static function attributs() {
|
public static function attributs() {
|
||||||
return array(
|
return array(
|
||||||
"titre" => self::$texte_titre,
|
attribut("titre", "text_line", self::$texte_titre),
|
||||||
"description" => "",
|
attribut("description", "text_rich", "")
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user