34 lines
827 B
PHP
34 lines
827 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");
|
|
(new MonitoraggioLineeV2Ajax())->checkAjaxRequests();
|
|
?>
|
|
<!DOCTYPE html>
|
|
<!--html manifest="manifest.appcache"-->
|
|
<html>
|
|
<head>
|
|
<?php include pvm_tagHead; ?>
|
|
</head>
|
|
<body>
|
|
<?php include pvm_headerNavbar; ?>
|
|
<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>
|