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

30 lines
706 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; ?>
<?php
include pvm_navTab;
if (!PVM\CurrentModule::isAuthorizedToCurrentUser()) {
include pvm_unauthorized;
} else {
include Controller::current_gestpath_mainPage();
} ?>
<?php include pvm_footerMinimal; ?>
</body>
</html>