Restructuration des infos des modules.
This commit is contained in:
parent
7e5281971e
commit
a277140fdf
|
@ -132,7 +132,7 @@ class ElementDocument {
|
|||
return $this->singleton_élément($fn, $args);
|
||||
else
|
||||
return $this->créer_élément($fn, $args);
|
||||
} else if (self::has_widget($fn)) {
|
||||
} elseif (self::has_widget($fn)) {
|
||||
return $this->créer_widget($fn, $args);
|
||||
} else {
|
||||
Debug::error("Impossible d'ajouter un élément $fn à " . $this->type);
|
||||
|
@ -204,13 +204,28 @@ ElementDocument::add_widget("field", function($d, $select){
|
|||
});
|
||||
|
||||
|
||||
ElementDocument::add_widget("text_line", function($d, $select){
|
||||
return $d->text("Not Implemented Yet : w_text_line($select)");
|
||||
});
|
||||
|
||||
|
||||
ElementDocument::add_widget("text_rich", function($d, $select){
|
||||
return $d->text("Not Implemented Yet : w_text_rich($select)");
|
||||
});
|
||||
|
||||
|
||||
ElementDocument::add_widget("bool", function($d, $select){
|
||||
// checkbox
|
||||
return $d->text("Not Implemented Yet : w_bool($select)");
|
||||
});
|
||||
|
||||
|
||||
ElementDocument::add_widget("img_file", function($d, $select){
|
||||
// input[file] et <img>
|
||||
return $d->text("Not Implemented Yet : w_img_file($select)");
|
||||
});
|
||||
|
||||
|
||||
//ElementDocument::add_widget("richText", function($select){}); // similaire
|
||||
// Peut-être que _field peut détecter automatiquement s'il faut traiter un champ de la BDD
|
||||
// (par ex. pour le richText) en fonction d'une info "type" dans la classe correspondant à la page de ce champ ?
|
||||
ElementDocument::add_widget("liste", function($d, $select, $function_formattage_elements) {
|
||||
$l = $d->ul();
|
||||
$l->li()->text("Not Implemented Yet");
|
||||
|
|
|
@ -1,10 +1,14 @@
|
|||
<?php
|
||||
|
||||
function main() {
|
||||
echo "<pre>";
|
||||
initModules();
|
||||
var_dump(Page::$modules);
|
||||
echo "</pre>";
|
||||
$bdd = BDD::get();
|
||||
BDD::reset();
|
||||
|
||||
$g = new AdminListeUtilisateurs();
|
||||
$g = new mAdminListeUtilisateurs();
|
||||
|
||||
$p = $g->rendu();
|
||||
echo "<pre>";
|
||||
|
|
|
@ -1,38 +1,128 @@
|
|||
<?php
|
||||
|
||||
require_once(dirname(__FILE__) . "/util.php"); // qw
|
||||
require_once(dirname(__FILE__) . "/document.php"); // widgets pour la vérification des types.
|
||||
|
||||
function inherit($m) {
|
||||
return array("inherit" => $m);
|
||||
}
|
||||
|
||||
function is_inherit($i) {
|
||||
return (is_array($i) && array_key_exists("inherit", $i));
|
||||
}
|
||||
|
||||
function ressources_statiques($res) {
|
||||
// TODO : factoriser d'ici...
|
||||
$lim = Page::$limitation_infos_module;
|
||||
$m = Page::$module_en_cours;
|
||||
if ($lim !== true && $lim != "ressources_statiques")
|
||||
return;
|
||||
|
||||
if (is_inherit($res)) {
|
||||
$i = $res["inherit"];
|
||||
Page::$limitation_infos_module = "ressources_statiques";
|
||||
call_user_func(array($i, "info"));
|
||||
Page::$limitation_infos_module = $lim;
|
||||
} else {
|
||||
// TODO : ... jusqu'ici (Page::$modules[$m]['ressources_statiques'] peut être factorisé aussi.
|
||||
Page::$modules[$m]['ressources_statiques'] = qw(Page::$modules[$m]['ressources_statiques'], $res);
|
||||
}
|
||||
}
|
||||
|
||||
function ressources_dynamiques($res) {
|
||||
// TODO : factoriser d'ici...
|
||||
$lim = Page::$limitation_infos_module;
|
||||
$m = Page::$module_en_cours;
|
||||
if ($lim !== true && $lim != "ressources_dynamiques")
|
||||
return;
|
||||
|
||||
if (is_inherit($res)) {
|
||||
$i = $res["inherit"];
|
||||
Page::$limitation_infos_module = "ressources_dynamiques";
|
||||
call_user_func(array($i, "info"));
|
||||
Page::$limitation_infos_module = $lim;
|
||||
} else {
|
||||
// TODO : ... jusqu'ici (Page::$modules[$m]['ressources_dynamiques'] peut être factorisé aussi.
|
||||
Page::$modules[$m]['ressources_dynamiques'] = qw(Page::$modules[$m]['ressources_dynamiques'], $res);
|
||||
}
|
||||
}
|
||||
|
||||
function types_enfants($types) {
|
||||
// TODO : factoriser d'ici...
|
||||
$lim = Page::$limitation_infos_module;
|
||||
$m = Page::$module_en_cours;
|
||||
if ($lim !== true && $lim != "types_enfants")
|
||||
return;
|
||||
|
||||
if (is_inherit($types)) {
|
||||
$i = $res["inherit"];
|
||||
Page::$limitation_infos_module = "types_enfants";
|
||||
call_user_func(array($i, "info"));
|
||||
Page::$limitation_infos_module = $lim;
|
||||
} else {
|
||||
// TODO : ... jusqu'ici (Page::$modules[$m]['types_enfants'] peut être factorisé aussi.
|
||||
Page::$modules[$m]['types_enfants'] = qw(Page::$modules[$m]['types_enfants'], $types);
|
||||
}
|
||||
}
|
||||
|
||||
function attribut($nom, $type = null, $defaut = null) {
|
||||
$lim = Page::$limitation_infos_module;
|
||||
$m = Page::$module_en_cours;
|
||||
if ($lim !== true && $lim != "attribut")
|
||||
return;
|
||||
|
||||
if (is_inherit($nom)) {
|
||||
$i = $nom["inherit"];
|
||||
Page::$limitation_infos_module = "attribut";
|
||||
call_user_func(array($i, "info"));
|
||||
Page::$limitation_infos_module = $lim;
|
||||
} else {
|
||||
if ($type === null || $defaut === null) {
|
||||
Debug::error("fonction attribut() : les paramètres $type et $defaut doivent être définis");
|
||||
}
|
||||
if (!Document::has_widget("w_" . $type)) {
|
||||
Debug::error("L'attribut $nom a le type $type, mais aucun widget w_$type n'existe.");
|
||||
}
|
||||
Page::$modules[$m]['attributs'][$nom] = array("type" => $type, "defaut" => $defaut);
|
||||
}
|
||||
}
|
||||
|
||||
function attributs_globaux() {
|
||||
}
|
||||
|
||||
function module($m) {
|
||||
Page::ajouterType($m);
|
||||
Page::$modules[$m] = array(
|
||||
'ressources_statiques' => qw(),
|
||||
'ressources_dynamiques' => qw(),
|
||||
'types_enfants' => qw(),
|
||||
'attributs' => qw()
|
||||
);
|
||||
}
|
||||
|
||||
function initModules() {
|
||||
foreach (Page::$modules as $m => $v) {
|
||||
echo $m . "<br/>";
|
||||
Page::$module_en_cours = $m;
|
||||
call_user_func(array($m, "info"));
|
||||
}
|
||||
Page::$module_en_cours = null;
|
||||
}
|
||||
|
||||
class Page {
|
||||
public static $types = array();
|
||||
|
||||
// Convention de nommage :
|
||||
// res_h_xxx = html, res_i_xxx = image, res_c_xxx = css, res_j_xxx = javascript
|
||||
public static function ressources_statiques() {
|
||||
return array();
|
||||
}
|
||||
public static function ressources_dynamiques() {
|
||||
return array();
|
||||
}
|
||||
public static function types_enfants() {
|
||||
// true => n'importe quel type est accepté
|
||||
// null ou false => aucun type.
|
||||
return true;
|
||||
}
|
||||
public static function attributs() {
|
||||
return array(
|
||||
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.
|
||||
);
|
||||
}
|
||||
public static $modules = array();
|
||||
public static $attributs_globaux = array();
|
||||
public static $module_en_cours = null;
|
||||
public static $limitation_infos_module = true;
|
||||
|
||||
public static function ajouter_type($type) {
|
||||
array_push(self::$types, $type);
|
||||
public static function info() {
|
||||
// Convention de nommage pour les ressources statiques :
|
||||
// res_h_xxx = html, res_i_xxx = image, res_c_xxx = css, res_j_xxx = javascript
|
||||
attributs_globaux("date_creation date_modification publier nom_systeme composant_url");
|
||||
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");
|
||||
}
|
||||
|
||||
private $parent = null;
|
||||
|
@ -40,13 +130,16 @@ class Page {
|
|||
return $this->parent;
|
||||
}
|
||||
|
||||
public function module() {
|
||||
return self::$modules[get_class($this)];
|
||||
}
|
||||
|
||||
public function rendu($res = null, $d = null) {
|
||||
// Renvoie un document (classe ElementDocument).
|
||||
// L'appel à une fonction statique via $this-> n'est pas propre, mais comment appeller la
|
||||
// fonction du sous-type et pas celle de Page sinon ?
|
||||
if ($res === null) {
|
||||
$ressources = $this->ressources_dynamiques();
|
||||
$res = $ressources[0];
|
||||
$res = $this->module['ressources_dynamiques'][0];
|
||||
}
|
||||
if ($d === null) {
|
||||
$d = new Document();
|
||||
|
@ -113,7 +206,8 @@ class Page {
|
|||
}
|
||||
$select .= ") group by uid_page having count(uid_page) = " . count($conditions);
|
||||
}
|
||||
|
||||
|
||||
echo "Page::enfants : result of select : ";
|
||||
var_dump(BDD::select($select . ";"));
|
||||
niy("enfants__");
|
||||
}
|
||||
|
@ -158,6 +252,7 @@ class Page {
|
|||
}
|
||||
|
||||
public function __get($nom) {
|
||||
if ($nom == "module") { return $this->module(); } // Raccourci.
|
||||
// s'il y a un getter (trigger), on l'appelle, sinon on appelle get_prop_direct();
|
||||
// le getter fait ce qu'il veut, puis appelle set_prop_direct();
|
||||
if (is_callable(array($this,"get_".$nom))) {
|
||||
|
@ -194,13 +289,6 @@ class Page {
|
|||
}
|
||||
}
|
||||
|
||||
function attribut($nom, $type, $defaut) {
|
||||
if (!Document::has_widget($type)) {
|
||||
Debug::error("L'attribut $nom a le type $type, mais aucun widget w_$type n'existe.");
|
||||
}
|
||||
return array($nom, $type, $defaut);
|
||||
}
|
||||
|
||||
class CollectionPages {
|
||||
public function size() {
|
||||
niy("CollectionPages::size()");
|
||||
|
|
|
@ -1,17 +1,10 @@
|
|||
<?php
|
||||
|
||||
class mAdminListeUtilisateurs extends Page {
|
||||
public static function ressources_statiques() {
|
||||
return qw("i_icône_nouvelle_page c_style");
|
||||
}
|
||||
public static function ressources_dynamiques() {
|
||||
return qw("h_page h_liste_mots_de_passe");
|
||||
}
|
||||
public static function types_enfants() {
|
||||
return qw("AdminUtilisateur");
|
||||
}
|
||||
public static function attributs() {
|
||||
return qw();
|
||||
public static function info() {
|
||||
ressources_statiques("i_icône_nouvelle_page c_style");
|
||||
ressources_dynamiques("h_page h_liste_mots_de_passe");
|
||||
types_enfants("AdminUtilisateur");
|
||||
}
|
||||
|
||||
public function res_i_icône_nouvelle_page() {
|
||||
|
@ -44,28 +37,20 @@ class mAdminListeUtilisateurs extends Page {
|
|||
}
|
||||
|
||||
class mAdminUtilisateur extends Page {
|
||||
public static function ressources_statiques() {
|
||||
return qw("c_style");
|
||||
}
|
||||
public static function ressources_dynamiques() {
|
||||
public static function info() {
|
||||
ressources_statiques("c_style");
|
||||
// TODO : h_page = affichage "en grand" de l'utilisateur (~= page perso, par ex. destination d'un lien de la page contacts).
|
||||
return qw("h_admin");
|
||||
}
|
||||
public static function types_enfants() {
|
||||
return qw("AdminUtilisateur");
|
||||
}
|
||||
public static function attributs() {
|
||||
return array(
|
||||
// TODO : le couple (nom,prenom) doit être unique.
|
||||
attribut("nom", "text_line", "Dupondt"),
|
||||
attribut("prenom", "text_line", "Jean"),
|
||||
attribut("equipe", "uid", "null"),
|
||||
attribut("mot_de_passe", "password", ""),
|
||||
// TODO : permissions différentes pour les propriétés peut_se_connecter et groupe_permissions.
|
||||
// L'utilisateur ne doit pas pouvoir les modifier.
|
||||
attribut("groupe_permissions", "groupe_permissions", "utilisateurs"),
|
||||
attribut("peut_se_connecter", "bool", "false")
|
||||
);
|
||||
ressources_dynamiques("h_admin");
|
||||
types_enfants("AdminUtilisateur");
|
||||
// TODO : le couple (nom,prenom) doit être unique.
|
||||
attribut("nom", "text_line", "Dupondt");
|
||||
attribut("prenom", "text_line", "Jean");
|
||||
attribut("equipe", "uid", "null");
|
||||
attribut("mot_de_passe", "password", "");
|
||||
// TODO : permissions différentes pour les propriétés peut_se_connecter et groupe_permissions.
|
||||
// L'utilisateur ne doit pas pouvoir les modifier.
|
||||
attribut("groupe_permissions", "groupe_permissions", "utilisateurs");
|
||||
attribut("peut_se_connecter", "bool", "false");
|
||||
}
|
||||
|
||||
public function res_c_style() {
|
||||
|
|
|
@ -5,22 +5,13 @@ abstract class mGalerieBase extends Page {
|
|||
protected static $texte_nouvelle_page = "Nouvel élément";
|
||||
protected static $icône_nouvelle_page = "nouvelle_periode.png";
|
||||
|
||||
|
||||
public static function ressources_statiques() {
|
||||
return qw("i_icône_nouvelle_page c_style");
|
||||
}
|
||||
public static function ressources_dynamiques() {
|
||||
return qw("h_page h_miniature h_mini_miniature");
|
||||
}
|
||||
public static function types_enfants() {
|
||||
return qw("GalerieÉvènement Lien");
|
||||
}
|
||||
public static function attributs() {
|
||||
return array(
|
||||
attribut("titre", "text_line", self::$texte_titre),
|
||||
attribut("description", "text_rich", ""),
|
||||
attribut("dans_nouveautes", "bool", "true")
|
||||
);
|
||||
public static function info() {
|
||||
ressources_statiques("i_icône_nouvelle_page".get_class()." c_style".get_class());
|
||||
ressources_dynamiques("h_page h_miniature h_mini_miniature");
|
||||
types_enfants("GalerieÉvènement");
|
||||
attribut("titre", "text_line", self::$texte_titre);
|
||||
attribut("description", "text_rich", "");
|
||||
attribut("dans_nouveautes", "bool", "true");
|
||||
}
|
||||
|
||||
public function res_i_icône_nouvelle_page() {
|
||||
|
@ -88,24 +79,16 @@ class mGalerieÉvénement extends mGalerieBase {
|
|||
protected static $icône_nouvelle_page = "nouvelle_photo.png";
|
||||
}
|
||||
|
||||
class mGaleriePhoto {
|
||||
class mGaleriePhoto extends mGalerieBase {
|
||||
protected static $texte_titre = "Photo";
|
||||
|
||||
public static function ressources_statiques() {
|
||||
return qw("c_style");
|
||||
public static function info() {
|
||||
ressources_statiques("c_style");
|
||||
ressources_dynamiques(inherit(get_parent_class()), "i_grande i_image i_miniature");
|
||||
attribut(inherit(get_parent_class()));
|
||||
attribut("image", "img_file", "");
|
||||
}
|
||||
public static function ressources_dynamiques() {
|
||||
return qw(parent::ressources_dynamiques(), "i_grande i_image i_miniature");
|
||||
}
|
||||
public static function types_enfants() {
|
||||
return null;
|
||||
}
|
||||
public static function attributs() {
|
||||
$a = parent::attributs();
|
||||
array_push($a, attribut("image", "file", ""));
|
||||
return $a;
|
||||
}
|
||||
|
||||
|
||||
public function set_titre($titre) {
|
||||
// set url quand on set titre !
|
||||
// TODO : valeur initiale pour l'url !
|
||||
|
@ -123,7 +106,7 @@ class mGaleriePhoto {
|
|||
|
||||
public function res_h_page($d) {
|
||||
$d->w_en_tete($this->titre, "".$this->description); // En-tête standard.
|
||||
$d->w_img($this->description, $this->i_image);
|
||||
$d->w_img_file($this->description, $this->i_image);
|
||||
return $d;
|
||||
}
|
||||
|
||||
|
@ -153,7 +136,7 @@ class mGaleriePhoto {
|
|||
$largeur_miniature = $largeur * $hauteur_miniature/$hauteur;
|
||||
}
|
||||
$miniature = ImageCreateTrueColor($largeur_miniature, $hauteur_miniature); // miniatures de tailles différentes
|
||||
var_dump($largeur_miniature, $hauteur_miniature, $largeur, $hauteur);
|
||||
//var_dump($largeur_miniature, $hauteur_miniature, $largeur, $hauteur);
|
||||
imagecopyresampled(
|
||||
$miniature, // image destination
|
||||
$image, // image source
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
<?php
|
||||
|
||||
require_once(dirname(__FILE__) . "/lien.php");
|
||||
|
||||
?>
|
|
@ -1,22 +0,0 @@
|
|||
<?php
|
||||
|
||||
class Lien extends Page {
|
||||
public static function ressources_statiques() {
|
||||
return qw();
|
||||
}
|
||||
public static function ressources_dynamiques() {
|
||||
return qw();
|
||||
}
|
||||
public static function types_enfants() {
|
||||
return qw();
|
||||
}
|
||||
public static function attributs() {
|
||||
return array(
|
||||
attribut("lien", "uid", "0")
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Page::ajouter_type("Lien");
|
||||
|
||||
?>
|
|
@ -1,20 +1,12 @@
|
|||
<?php
|
||||
|
||||
class mNouveautes extends Page {
|
||||
public static function ressources_statiques() {
|
||||
return qw("i_icône_nouvelle_page c_style");
|
||||
}
|
||||
public static function ressources_dynamiques() {
|
||||
return qw("h_page");
|
||||
}
|
||||
public static function types_enfants() {
|
||||
return qw("Lien");
|
||||
}
|
||||
public static function attributs() {
|
||||
return array(
|
||||
attribut("titre", "text_line", "Nouveautés"),
|
||||
attribut("description", "text_rich", "")
|
||||
);
|
||||
public static function info() {
|
||||
ressources_statiques("i_icône_nouvelle_page c_style");
|
||||
ressources_dynamiques("h_page");
|
||||
groupe_enfants("sources");
|
||||
attribut("titre", "text_line", "Nouveautés");
|
||||
attribut("description", "text_rich", "");
|
||||
}
|
||||
|
||||
public function res_i_icône_nouvelle_page() {
|
||||
|
|
|
@ -3,7 +3,10 @@
|
|||
class mSquelette extends Page {
|
||||
// Trouver un moyen pour que mSquelette soit appellé après avoir généré la page, pour qu'il puisse l'emballer.
|
||||
|
||||
protected static $ressources_dynamiques = array("c_css_principal text/css");
|
||||
public static function info() {
|
||||
ressources_dynamiques("c_css_principal text/css");
|
||||
}
|
||||
|
||||
public function res_c_css_principal() {
|
||||
// mettre bout à bout tous les CSS ?
|
||||
niy("res_c_css_principal");
|
||||
|
|
Loading…
Reference in New Issue
Block a user