Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
23 righe
588 B
23 righe
588 B
<? |
|
$configPath = substr(__DIR__,0,strpos(__DIR__,"/public_html"))."/config.php"; |
|
include_once($configPath); |
|
if (!empty($_SESSION["utente"]) && !empty($_SESSION["utente"]->oe)) { |
|
$breadcrumb[""] = __("DGUE"); |
|
|
|
include_once ($root."/layout/top.php"); |
|
?> |
|
<div class="container-fluid"> |
|
<h1> |
|
<?= __("Compilazione DGUE") ?><br> |
|
</h1> |
|
<?php |
|
DGUE::printTable(); |
|
?> |
|
</div> |
|
<? |
|
include_once ($root."/layout/bottom.php"); |
|
} else { |
|
echo '<meta http-equiv="refresh" content="0;URL=/index.php">'; |
|
die(); |
|
} |
|
?>
|
|
|