Systemerweiterungen

This commit is contained in:
aschwarz
2023-03-27 16:54:46 +02:00
parent 22af684296
commit aee828463e
15 changed files with 207 additions and 52 deletions

15
dashboard/error.php Normal file
View File

@ -0,0 +1,15 @@
<?php
## INDEX gegen DB
if (!isset($_SESSION)) {
session_start();
}
#$_SESSION['sessionid'] = session_id();
include_once '../classes/TestProjektSmarty.class_subdir.php';
require_once("../config.inc.php");
$smarty = new SmartyAdmin();
$templatename = substr(basename($_SERVER['PHP_SELF']), 0, -3) . "html";
require_once "../language/german.inc.php";
$smarty->assign('action', "$action");
$smarty->display("modern/dashboard/$templatename");
?>