Update index.php

This commit is contained in:
2026-07-18 15:47:23 +02:00
parent 0b4c5f988d
commit 4dadfb8863
+3 -51
View File
@@ -2,52 +2,12 @@
if (session_status() === PHP_SESSION_NONE) { if (session_status() === PHP_SESSION_NONE) {
session_start(); session_start();
} }
ob_start();
include_once("php/controller/index.php");
$pfad = $_GET["pfad"] ?? "home"; include_once("php/controller/index-controller.php");
/*
Controller für Aktionen werden vor der HTML-Ausgabe geladen,
damit Weiterleitungen mit header() funktionieren.
*/
if ($pfad === "login") {
include_once "php/controller/login-controller.php";
}
if ($pfad === "register") {
include_once "php/controller/register-controller.php";
}
if ($pfad === "password-forgotten") {
include_once "php/controller/password-forgotten-controller.php";
}
if ($pfad === "confirm-register") {
include_once "php/controller/confirm-register-controller.php";
}
if ($pfad === "confirm-password") {
include_once "php/controller/confirm-password-controller.php";
}
if ($pfad === "logout") {
include_once "php/controller/logout-controller.php";
exit();
}
if ($pfad === "deleteAccount") {
include_once "php/controller/deleteAccount-controller.php";
exit();
}
?> ?>
<!--
Seite: Index der Lernplattform
Funktion: Webseitengerüst, Anzeigen von Content
-->
<!DOCTYPE html> <!DOCTYPE html>
<html lang="de"> <html lang="de">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="description" content="EduForge"> <meta name="description" content="EduForge">
@@ -73,17 +33,13 @@ if ($pfad === "deleteAccount") {
<title>EduForge</title> <title>EduForge</title>
</head> </head>
<body> <body>
<?php <?php
include_once 'includes/navbar.php'; include_once 'includes/navbar.php';
/* // Dynamischer Inhalt (Absolut sicher durch die obige Prüfung)
Dynamischer Inhalt: if (isset($pfad) && $pfad !== "404" && file_exists('content/' . $pfad . '.php')) {
Je nach pfad-Parameter wird die passende Datei aus content geladen.
*/
if (file_exists('content/' . $pfad . '.php')) {
include_once 'content/' . $pfad . '.php'; include_once 'content/' . $pfad . '.php';
} else { } else {
include_once 'content/404.php'; include_once 'content/404.php';
@@ -94,7 +50,3 @@ if ($pfad === "deleteAccount") {
</body> </body>
</html> </html>
<?php
ob_end_flush();
?>