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.
40 righe
1.6 KiB
40 righe
1.6 KiB
<? |
|
$configPath = substr(__DIR__,0,strpos(__DIR__,"public_html/"))."config.php"; |
|
include_once($configPath); |
|
$id_modulo = "preliminari-lotto"; |
|
if (!empty($_SESSION["utente"]) && $_SESSION["utente"]->permission($radice,$_GET["codice_simog"],$id_modulo)) { |
|
if (!empty($_GET["codice_simog"])) { |
|
$anac = anac::init($_GET["codice_simog"]); |
|
if (!empty($anac) && $anac->info["smart_cig"] == "N") { |
|
$version = $anac->version; |
|
$lock = $anac->checkLock($id_modulo); |
|
|
|
$breadcrumb = array(); |
|
$breadcrumb["/".$radice."/"] = Modulo::getInfo($radice)["titolo"]; |
|
$breadcrumb = $anac->getBreadcrumb($breadcrumb); |
|
$breadcrumb["/".$radice."/panel.php?codice=" . $anac->info["codice"]] = __("Pannello"); |
|
$breadcrumb[""] = __("Modifica"); |
|
include($root."/backend/layout/top.php"); |
|
$codice_lotto = $_GET["codice_lotto"]; |
|
include("_status.php"); |
|
if (!empty($logSimog["msg"])) { |
|
alertManager::printAlertBox(__("Errori SIMOG"),$logSimog["msg"]); |
|
} |
|
$echo = $anac->printEditLotto($codice_lotto); |
|
if (!$echo) { |
|
alertManager::printAlertBox(__("Errore di configurazione")); |
|
} |
|
include_once($root."/backend/layout/bottom.php"); |
|
} else { |
|
echo '<meta http-equiv="refresh" content="0;URL=/backend/anac/index.php">'; |
|
die(); |
|
} |
|
} else { |
|
echo '<meta http-equiv="refresh" content="0;URL=/backend/anac/index.php">'; |
|
die(); |
|
} |
|
} else { |
|
echo '<meta http-equiv="refresh" content="0;URL=/backend/anac/index.php">'; |
|
die(); |
|
} |
|
?>
|
|
|