Section horaires.
This commit is contained in:
parent
29a850c97f
commit
cc95daa8d2
66
__cms__/code/modules/horaires/horaires-creneau.php
Normal file
66
__cms__/code/modules/horaires/horaires-creneau.php
Normal 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");
|
||||
|
||||
?>
|
56
__cms__/code/modules/horaires/horaires-creneau.php~
Normal file
56
__cms__/code/modules/horaires/horaires-creneau.php~
Normal 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");
|
||||
|
||||
?>
|
82
__cms__/code/modules/horaires/horaires-index.php
Normal file
82
__cms__/code/modules/horaires/horaires-index.php
Normal 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");
|
||||
|
||||
?>
|
81
__cms__/code/modules/horaires/horaires-index.php~
Normal file
81
__cms__/code/modules/horaires/horaires-index.php~
Normal 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");
|
||||
|
||||
?>
|
4
__cms__/code/modules/horaires/include.php
Normal file
4
__cms__/code/modules/horaires/include.php
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?php
|
||||
require_once(dirname(__FILE__) . "/horaires-index.php");
|
||||
require_once(dirname(__FILE__) . "/horaires-creneau.php");
|
||||
?>
|
4
__cms__/code/modules/horaires/include.php~
Normal file
4
__cms__/code/modules/horaires/include.php~
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?php
|
||||
require_once(dirname(__FILE__) . "/contact-index.php");
|
||||
require_once(dirname(__FILE__) . "/contact-contact.php");
|
||||
?>
|
|
@ -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");
|
||||
|
||||
?>
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
1
__cms__/donnees/horaires/Créneau2/__prop__debut
Normal file
1
__cms__/donnees/horaires/Créneau2/__prop__debut
Normal file
|
@ -0,0 +1 @@
|
|||
17h00
|
1
__cms__/donnees/horaires/Créneau2/__prop__equipe
Normal file
1
__cms__/donnees/horaires/Créneau2/__prop__equipe
Normal file
|
@ -0,0 +1 @@
|
|||
Équipe n°1
|
1
__cms__/donnees/horaires/Créneau2/__prop__fin
Normal file
1
__cms__/donnees/horaires/Créneau2/__prop__fin
Normal file
|
@ -0,0 +1 @@
|
|||
18h00
|
1
__cms__/donnees/horaires/Créneau2/__prop__jour
Normal file
1
__cms__/donnees/horaires/Créneau2/__prop__jour
Normal file
|
@ -0,0 +1 @@
|
|||
Lundi
|
1
__cms__/donnees/horaires/Créneau2/__prop__proprietaire
Normal file
1
__cms__/donnees/horaires/Créneau2/__prop__proprietaire
Normal file
|
@ -0,0 +1 @@
|
|||
grand___chef
|
1
__cms__/donnees/horaires/Créneau2/__prop__type
Normal file
1
__cms__/donnees/horaires/Créneau2/__prop__type
Normal file
|
@ -0,0 +1 @@
|
|||
horaires-creneau
|
1
__cms__/donnees/horaires/__prop__dernier_numero
Normal file
1
__cms__/donnees/horaires/__prop__dernier_numero
Normal file
|
@ -0,0 +1 @@
|
|||
2
|
1
__cms__/donnees/horaires/__prop__description
Normal file
1
__cms__/donnees/horaires/__prop__description
Normal file
|
@ -0,0 +1 @@
|
|||
Voici les créneaux horaires pour les différentes équipes :
|
1
__cms__/donnees/horaires/__prop__titre
Normal file
1
__cms__/donnees/horaires/__prop__titre
Normal file
|
@ -0,0 +1 @@
|
|||
Horaires
|
1
__cms__/donnees/horaires/__prop__type
Normal file
1
__cms__/donnees/horaires/__prop__type
Normal file
|
@ -0,0 +1 @@
|
|||
horaires-index
|
7
horaires/Contact1/index.php
Normal file
7
horaires/Contact1/index.php
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
require_once(dirname(__FILE__) . "/./../../__cms__/cms.php");
|
||||
|
||||
CMS::page("/horaires/Contact1");
|
||||
|
||||
?>
|
7
horaires/Créneau2/index.php
Normal file
7
horaires/Créneau2/index.php
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
require_once(dirname(__FILE__) . "/./../../__cms__/cms.php");
|
||||
|
||||
CMS::page("/horaires/Créneau2");
|
||||
|
||||
?>
|
7
horaires/index.php
Normal file
7
horaires/index.php
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
require_once(dirname(__FILE) . "/./../__cms__/cms.php");
|
||||
|
||||
CMS::page("/horaires");
|
||||
|
||||
?>
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user