Files
PVM/public_html/logs.php
2025-11-17 12:20:03 +01:00

32 lines
743 B
PHP

<?php
include_once "session.php";
$session = getSession();
include_once "functions.php";
include_once "config.php";
require_once "include_login.php";
include_once "include/module.php";
include Controller::current_mainClasspath();
include Controller::current_gestpath_include("ajax.php");
?>
<!DOCTYPE html>
<!--html manifest="manifest.appcache"-->
<html>
<head>
<?php include pvm_tagHead; ?>
</head>
<body>
<?php include pvm_headerNavbar; ?>
<div id="content">
<div><?php
if (!PVM\CurrentModule::isAuthorizedToCurrentUser()) {
include pvm_unauthorized;
} else {
include Controller::current_gestpath_mainPage();
} ?>
</div>
</div>
<?php include pvm_footerMinimal; ?>
</body>
</html>