mirror of
https://gitlab.com/animath/si/plateforme-corres2math.git
synced 2025-07-03 10:02:47 +02:00
Possibilité de modification de la page d'accueil
This commit is contained in:
@ -1,3 +1,16 @@
|
||||
<?php
|
||||
|
||||
if (isset($_GET["edit"])) {
|
||||
if (!isset($_SESSION["user_id"]) || $_SESSION["role"] != Role::ADMIN)
|
||||
require_once "server_files/403.php";
|
||||
|
||||
if (isset($_POST["edit_page"])) {
|
||||
$content = $_POST["content"];
|
||||
|
||||
$CONFIG->setIndexPage(htmlspecialchars($content));
|
||||
header("Location: /");
|
||||
exit(0);
|
||||
}
|
||||
}
|
||||
|
||||
require_once "server_files/views/index.php";
|
||||
|
Reference in New Issue
Block a user