58 lines
2.4 KiB
PHP
58 lines
2.4 KiB
PHP
<?php
|
|
|
|
class ÉquipesJoueur {
|
|
public static function action($chemin, $action, $paramètres) {
|
|
if ($action == "anuler") {
|
|
return new Page($chemin, '', "redirect");
|
|
} else if ($action == "supprimer") {
|
|
Stockage::supprimer($chemin, true); // TODO ! gérer correctement le récursif
|
|
return new Page($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->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="équipes joueur 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 joueur ' . htmlspecialchars(Stockage::get_prop($chemin, "prenom") . " " . Stockage::get_prop($chemin, "nom")) . '"/>';
|
|
$ret .= '</form>';
|
|
}
|
|
|
|
// Peut-être afficher le bouton "citer" ? ou est-ce trop d'options ?
|
|
|
|
return new Page($ret, Stockage::get_prop($chemin, "prenom") . " " . Stockage::get_prop($chemin, "nom"));
|
|
}
|
|
}
|
|
}
|
|
|
|
Modules::enregister_module("ÉquipesJoueur", "equipes-joueur", "vue", "nom prenom description");
|
|
|
|
?>
|