add all files

This commit is contained in:
Rucus
2026-02-17 09:29:34 -06:00
parent b8c8d67c67
commit 782d203799
21925 changed files with 2433086 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
// phpcs:ignoreFile
$currentPage = basename($_SERVER['PHP_SELF']);
$currentPath = ltrim($_SERVER['PHP_SELF'], '/');
if ($_SESSION['SESS_MEMBER_LEVEL'] === "controls") {
include __DIR__ . "/menucontrols.php";
} elseif ($_SESSION['SESS_MEMBER_LEVEL'] === "admin") {
include __DIR__ . "/menuadmin.php";
} elseif ($_SESSION['SESS_MEMBER_LEVEL'] === "supervisor") {
include __DIR__ . "/menusupervisor.php";
} elseif ($_SESSION['SESS_MEMBER_LEVEL'] === "user") {
include __DIR__ . "/menu.php";
}
?>