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

34 lines
793 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();
(new Ajax())->checkAjaxRequests();
?>
<!DOCTYPE html>
<!--html manifest="manifest.appcache"-->
<html lang="it">
<head>
<?php include pvm_tagHead; ?>
</head>
<body>
<?php include pvm_headerNavbar; ?>
<?php include pvm_splashScreen; ?>
<div id="content">
<div><?php
include pvm_navTab;
if (!PVM\CurrentModule::isAuthorizedToCurrentUser()) {
include pvm_unauthorized;
} else {
include Controller::current_gestpath_mainPage();
} ?>
</div>
</div>
<?php include pvm_footerMinimal; ?>
</body>
</html>