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
806 B
23 righe
806 B
<? |
|
$configPath = substr(__DIR__,0,strpos(__DIR__,"/public_html"))."/config.php"; |
|
include_once($configPath); |
|
$error = true; |
|
if (isset($_SESSION["utente"]) && !empty($_GET["codice"]) && $_SESSION["utente"]->permission($radice,$_GET["codice"])) { |
|
$breadcrumb = array(); |
|
$breadcrumb["/".$radice."/"] = Modulo::getInfo($radice)["titolo"]; |
|
$breadcrumb[""] = __("Modifica"); |
|
include_once "{$beRoot}/layout/top.php"; |
|
$oe = oeManager::getOE($_GET["codice"]); |
|
if (!empty($oe)) { |
|
$utente = oeManager::getUser($oe["codice"]); |
|
if (!empty($utente)) { |
|
$error = false; |
|
include($root."/oe/form.php"); |
|
} |
|
} |
|
if ($error) { |
|
alertManager::printAlertBox(__("Si è verificato un errore")); |
|
} |
|
include_once "{$beRoot}/layout/bottom.php"; |
|
} |
|
?>
|
|
|