63 lines
1.8 KiB
PHP
63 lines
1.8 KiB
PHP
<?php
|
|
|
|
class NouveautesIndex {
|
|
public static function action($chemin, $action, $paramètres) {
|
|
if ($action == "anuler") {
|
|
return new Page($chemin, '', "redirect");
|
|
} else {
|
|
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="articles infos" method="post" action="' . $chemin->get_url() . '">';
|
|
$ret .= '<h2><input type="text" name="titre" value="' . Stockage::get_prop($chemin, "titre") . '" /></h2>';
|
|
$ret .= '<p><input type="submit" value="appliquer" /></p>';
|
|
$ret .= '</form>';
|
|
} else {
|
|
$ret .= '<h2>' . Stockage::get_prop($chemin, "titre") . '</h2>';
|
|
}
|
|
|
|
$ret .= '<div class="nouveautes list index">';
|
|
$ret .= '<ul>';
|
|
|
|
var_dump(Stockage::liste_enfants(new Chemin("/forum")));
|
|
|
|
foreach (Stockage::liste_enfants($chemin) as $k) {
|
|
$mini = Modules::vue($k, 'miniature');
|
|
$ret .= '<li>';
|
|
// TODO : mettre une ancre "#message<numéro>"
|
|
$ret .= '<a href="' . $k->get_url() . '">'; // TODO : escape l'url !
|
|
$ret .= '<span class="titre">';
|
|
$ret .= $mini->titre;
|
|
$ret .= '</span>';
|
|
$ret .= '</a>';
|
|
$ret .= '<p class="contenu">';
|
|
$ret .= $mini->contenu;
|
|
$ret .= '</p>';
|
|
$ret .= '</li>';
|
|
}
|
|
|
|
$ret .= '</ul>';
|
|
|
|
return new Page($ret, Stockage::get_prop($chemin, "titre"));
|
|
}
|
|
}
|
|
}
|
|
|
|
Modules::enregister_module("NouveautesIndex", "nouveautes-index", "vue", "titre");
|
|
|
|
?>
|