Section horaires.

This commit is contained in:
Georges Dupéron 2010-09-22 23:37:18 +02:00
parent 29a850c97f
commit cc95daa8d2
22 changed files with 327 additions and 1 deletions

View File

@ -0,0 +1,66 @@
<?php
class HorairesCreneau {
public static function action($chemin, $action, $paramètres) {
if ($action == "anuler") {
return new Page($chemin, $chemin, '', "redirect");
} else if ($action == "supprimer") {
Stockage::supprimer($chemin, true); // TODO ! gérer correctement le récursif
return new Page($chemin, $chemin->parent(), '', "redirect");
} else {
if (isset($paramètres["equipe"])) {
Stockage::set_prop($chemin, "equipe", $paramètres["equipe"]);
}
if (isset($paramètres["jour"])) {
Stockage::set_prop($chemin, "jour", $paramètres["jour"]);
}
if (isset($paramètres["debut"])) {
Stockage::set_prop($chemin, "debut", $paramètres["debut"]);
}
if (isset($paramètres["fin"])) {
Stockage::set_prop($chemin, "fin", $paramètres["fin"]);
}
return new Page($chemin, $chemin->parent(), '', "redirect");
}
}
public static function vue($chemin, $vue = "normal") {
if ($vue == "normal") {
$ret = '';
if (Permissions::vérifier_permission($chemin, "set_prop", Authentification::get_utilisateur())) {
$ret .= '<form class="creneau edition" enctype="multipart/form-data" method="post" action="' . $chemin->get_url() . '">';
$ret .= '<input type="text" name="equipe" value="' . Stockage::get_prop($chemin, "equipe") . '" />';
$ret .= " le ";
$ret .= '<input type="text" name="jour" value="' . Stockage::get_prop($chemin, "jour") . '" />';
$ret .= " de ";
$ret .= '<input type="text" name="debut" value="' . Stockage::get_prop($chemin, "debut") . '" />';
$ret .= " à ";
$ret .= '<input type="text" name="fin" value="' . Stockage::get_prop($chemin, "fin") . '" />';
$ret .= '<p><input type="submit" value="appliquer" /></p>';
$ret .= '</form>';
} else {
$ret .= Stockage::get_prop($chemin, "equipe");
$ret .= " le ";
$ret .= Stockage::get_prop($chemin, "jour");
$ret .= " de ";
$ret .= Stockage::get_prop($chemin, "debut");
$ret .= " à ";
$ret .= Stockage::get_prop($chemin, "fin");
}
if (Permissions::vérifier_permission($chemin, "supprimer", Authentification::get_utilisateur())) {
$ret .= '<form action="' . $chemin->get_url() . '">';
$ret .= '<input type="hidden" name="action" value="supprimer"/>';
$ret .= '<input type="submit" value="Supprimer le créneau"/>';
$ret .= '</form>';
}
return new Page($chemin, $ret, Stockage::get_prop($chemin, "titre"));
}
}
}
Modules::enregister_module("HorairesCreneau", "horaires-creneau", "vue", "equipe jour debut fin");
?>

View File

@ -0,0 +1,56 @@
<?php
class ContactContact {
public static function action($chemin, $action, $paramètres) {
if ($action == "anuler") {
return new Page($chemin, $chemin, '', "redirect");
} else if ($action == "supprimer") {
Stockage::supprimer($chemin, true); // TODO ! gérer correctement le récursif
return new Page($chemin, $chemin->parent(), '', "redirect");
} else {
if (isset($paramètres["nom"])) {
Stockage::set_prop($chemin, "nom", $paramètres["nom"]);
}
if (isset($paramètres["prenom"])) {
Stockage::set_prop($chemin, "prenom", $paramètres["prenom"]);
}
if (isset($paramètres["description"])) {
Stockage::set_prop($chemin, "description", $paramètres["description"]);
}
return new Page($chemin, $chemin->parent(), '', "redirect");
}
}
public static function vue($chemin, $vue = "normal") {
if ($vue == "normal") {
$ret = '';
if (Permissions::vérifier_permission($chemin, "set_prop", Authentification::get_utilisateur())) {
$ret .= '<form class="contacts contact edition" enctype="multipart/form-data" method="post" action="' . $chemin->get_url() . '">';
$ret .= '<input type="text" name="prenom" value="' . Stockage::get_prop($chemin, "prenom") . '" />';
$ret .= '<input type="text" name="nom" value="' . Stockage::get_prop($chemin, "nom") . '" />';
$ret .= formulaire_édition_texte_enrichi(Stockage::get_prop($chemin, "description"), "description");
$ret .= '<p><input type="submit" value="appliquer" /></p>';
$ret .= '</form>';
} else {
$ret .= Stockage::get_prop($chemin, "prenom");
$ret .= " ";
$ret .= Stockage::get_prop($chemin, "nom");
$ret .= affichage_texte_enrichi(Stockage::get_prop($chemin, "description"));
}
if (Permissions::vérifier_permission($chemin, "supprimer", Authentification::get_utilisateur())) {
$ret .= '<form action="' . $chemin->get_url() . '">';
$ret .= '<input type="hidden" name="action" value="supprimer"/>';
$ret .= '<input type="submit" value="Supprimer le contact ' . htmlspecialchars(Stockage::get_prop($chemin, "prenom") . " " . Stockage::get_prop($chemin, "nom")) . '"/>';
$ret .= '</form>';
}
return new Page($chemin, $ret, Stockage::get_prop($chemin, "titre"));
}
}
}
Modules::enregister_module("ContactContact", "contact-contact", "vue", "nom prenom description");
?>

View File

@ -0,0 +1,82 @@
<?php
class HorairesIndex {
public static function action($chemin, $action, $paramètres) {
if ($action == "anuler") {
return new Page($chemin, $chemin, '', "redirect");
} else if ($action == "nouvelle_page") {
// SECURITE : On ne doit PAS pouvoir modifier dernier_numero arbitrairement
// CONCURENCE : Faire un lock quelque part...
$numéro_creneau = 1 + Stockage::get_prop($chemin, "dernier_numero");
Stockage::set_prop($chemin, "dernier_numero", $numéro_creneau);
$np = Stockage::nouvelle_page($chemin, "Créneau" . $numéro_creneau, "horaires-creneau");
Stockage::set_prop($np, "proprietaire", Authentification::get_utilisateur());
Stockage::set_prop($np, "equipe", "Nom de l'équipe");
Stockage::set_prop($np, "jour", "Lundi");
Stockage::set_prop($np, "debut", "17h00");
Stockage::set_prop($np, "fin", "18h00");
return new Page($chemin, $np, '', "redirect");
} else {
if (isset($paramètres["description"])) {
Stockage::set_prop($chemin, "description", $paramètres["description"]);
}
if (isset($paramètres["titre"])) {
Stockage::set_prop($chemin, "titre", $paramètres["titre"]);
}
if (isset($paramètres["vue"])) {
return self::vue($chemin, $paramètres["vue"]);
} else {
return self::vue($chemin);
}
}
}
public static function vue($chemin, $vue = "normal") {
if ($vue == "normal") {
$ret = '';
if (Permissions::vérifier_permission($chemin, "set_prop", Authentification::get_utilisateur())) {
$ret .= '<form class="horaires infos" method="post" action="' . $chemin->get_url() . '">';
$ret .= '<h2><input type="text" name="titre" value="' . Stockage::get_prop($chemin, "titre") . '" /></h2>';
$ret .= formulaire_édition_texte_enrichi(Stockage::get_prop($chemin, "description"), "description");
$ret .= '<p><input type="submit" value="appliquer" /></p>';
$ret .= '</form>';
} else {
$ret .= '<h2>' . Stockage::get_prop($chemin, "titre") . '</h2>';
$ret .= '<p class="horaires index description affichage">' . Stockage::get_prop($chemin, "description") . '</p>';
}
$ret .= '<div class="horaires liste-creneaux index">';
$ret .= '<ul>';
if (Permissions::vérifier_permission($chemin, "nouvelle_page", Authentification::get_utilisateur())) {
$ret .= '<li>';
$ret .= '<div class="titre">';
$ret .= '<form class="horaires nouvelle_page" method="post" action="' . $chemin->get_url() . '">';
$ret .= '<p>';
$ret .= '<input type="hidden" name="action" value="nouvelle_page"/>';
$ret .= '<input type="submit" value="Nouveau créneau"/>';
$ret .= '</p>';
$ret .= '</form>';
$ret .= '</div>';
$ret .= '</li>';
}
foreach (stockage::liste_enfants($chemin) as $k) {
$ret .= '<li>' . Modules::vue($k)->contenu . '</li>';
}
$ret .= '</ul>';
return new Page($chemin, $ret, Stockage::get_prop($chemin, "titre"));
}
}
}
Modules::enregister_module("HorairesIndex", "horaires-index", "vue", "titre description");
?>

View File

@ -0,0 +1,81 @@
<?php
class ContactIndex {
public static function action($chemin, $action, $paramètres) {
if ($action == "anuler") {
return new Page($chemin, $chemin, '', "redirect");
} else if ($action == "nouvelle_page") {
// SECURITE : On ne doit PAS pouvoir modifier dernier_numero arbitrairement
// CONCURENCE : Faire un lock quelque part...
$numéro_contact = 1 + Stockage::get_prop($chemin, "dernier_numero");
Stockage::set_prop($chemin, "dernier_numero", $numéro_contact);
$np = Stockage::nouvelle_page($chemin, "Contact" . $numéro_contact, "contact-contact");
Stockage::set_prop($np, "proprietaire", Authentification::get_utilisateur());
Stockage::set_prop($np, "nom", "Dupondt");
Stockage::set_prop($np, "prenom", "Jean");
Stockage::set_prop($np, "description", "");
return new Page($chemin, $np, '', "redirect");
} else {
if (isset($paramètres["description"])) {
Stockage::set_prop($chemin, "description", $paramètres["description"]);
}
if (isset($paramètres["titre"])) {
Stockage::set_prop($chemin, "titre", $paramètres["titre"]);
}
if (isset($paramètres["vue"])) {
return self::vue($chemin, $paramètres["vue"]);
} else {
return self::vue($chemin);
}
}
}
public static function vue($chemin, $vue = "normal") {
if ($vue == "normal") {
$ret = '';
if (Permissions::vérifier_permission($chemin, "set_prop", Authentification::get_utilisateur())) {
$ret .= '<form class="contact infos" method="post" action="' . $chemin->get_url() . '">';
$ret .= '<h2><input type="text" name="titre" value="' . Stockage::get_prop($chemin, "titre") . '" /></h2>';
$ret .= formulaire_édition_texte_enrichi(Stockage::get_prop($chemin, "description"), "description");
$ret .= '<p><input type="submit" value="appliquer" /></p>';
$ret .= '</form>';
} else {
$ret .= '<h2>' . Stockage::get_prop($chemin, "titre") . '</h2>';
$ret .= '<p class="contact index description affichage">' . Stockage::get_prop($chemin, "description") . '</p>';
}
$ret .= '<div class="contact liste-contacts index">';
$ret .= '<ul>';
if (Permissions::vérifier_permission($chemin, "nouvelle_page", Authentification::get_utilisateur())) {
$ret .= '<li>';
$ret .= '<div class="titre">';
$ret .= '<form class="contact nouvelle_page" method="post" action="' . $chemin->get_url() . '">';
$ret .= '<p>';
$ret .= '<input type="hidden" name="action" value="nouvelle_page"/>';
$ret .= '<input type="submit" value="Nouveau contact"/>';
$ret .= '</p>';
$ret .= '</form>';
$ret .= '</div>';
$ret .= '</li>';
}
foreach (stockage::liste_enfants($chemin) as $k) {
$ret .= '<li>' . Modules::vue($k)->contenu . '</li>';
}
$ret .= '</ul>';
return new Page($chemin, $ret, Stockage::get_prop($chemin, "titre"));
}
}
}
Modules::enregister_module("ContactIndex", "contact-index", "vue", "titre description");
?>

View File

@ -0,0 +1,4 @@
<?php
require_once(dirname(__FILE__) . "/horaires-index.php");
require_once(dirname(__FILE__) . "/horaires-creneau.php");
?>

View File

@ -0,0 +1,4 @@
<?php
require_once(dirname(__FILE__) . "/contact-index.php");
require_once(dirname(__FILE__) . "/contact-contact.php");
?>

View File

@ -10,5 +10,6 @@ require_once(dirname(__FILE__) . "/articles/include.php");
require_once(dirname(__FILE__) . "/equipes/include.php");
require_once(dirname(__FILE__) . "/liens/include.php");
require_once(dirname(__FILE__) . "/contact/include.php");
require_once(dirname(__FILE__) . "/horaires/include.php");
?>

View File

@ -46,6 +46,7 @@ class Squelette {
$ret .= ' <li><a href="' . $racine->enfant("forum")->get_url() . '">Forum</a></li>' . $nl;
$ret .= ' <li><a href="' . $racine->enfant("liens")->get_url() . '">Liens utiles</a></li>' . $nl;
$ret .= ' <li><a href="' . $racine->enfant("contact")->get_url() . '">Contact</a></li>' . $nl;
$ret .= ' <li><a href="' . $racine->enfant("horaires")->get_url() . '">Horaires</a></li>' . $nl;
if (Permissions::vérifier_permission($racine->enfant("admin"), "set_prop", Authentification::get_utilisateur())) {
$ret .= '<li><a href="' . $racine->enfant("admin")->get_url() . '">Administration</a></li>' . $nl;
}

View File

@ -0,0 +1 @@
17h00

View File

@ -0,0 +1 @@
Équipe n°1

View File

@ -0,0 +1 @@
18h00

View File

@ -0,0 +1 @@
Lundi

View File

@ -0,0 +1 @@
grand___chef

View File

@ -0,0 +1 @@
horaires-creneau

View File

@ -0,0 +1 @@
2

View File

@ -0,0 +1 @@
Voici les créneaux horaires pour les différentes équipes :

View File

@ -0,0 +1 @@
Horaires

View File

@ -0,0 +1 @@
horaires-index

View File

@ -0,0 +1,7 @@
<?php
require_once(dirname(__FILE__) . "/./../../__cms__/cms.php");
CMS::page("/horaires/Contact1");
?>

View File

@ -0,0 +1,7 @@
<?php
require_once(dirname(__FILE__) . "/./../../__cms__/cms.php");
CMS::page("/horaires/Créneau2");
?>

7
horaires/index.php Normal file
View File

@ -0,0 +1,7 @@
<?php
require_once(dirname(__FILE) . "/./../__cms__/cms.php");
CMS::page("/horaires");
?>

View File

@ -1,6 +1,6 @@
#!/bin/sh
fichiers="index.php galerie forum nouveautes equipes liens contact admin __cms__/donnees"
fichiers="index.php galerie forum nouveautes equipes liens contact horaires admin __cms__/donnees"
chgrp -R www-data $fichiers
chmod -R 664 $fichiers