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.
25 righe
894 B
25 righe
894 B
<? |
|
$configPath = substr(__DIR__, 0, strpos(__DIR__, "public_html")) . "/config.php"; |
|
include_once($configPath); |
|
if (!empty($_SESSION["utente"]) && !empty($_SESSION["utente"]->oe)) { |
|
$elenco = publicAlboCommissione::init($_GET["codice"]); |
|
if (!empty($elenco) && $elenco->potentialAction) { |
|
$breadcrumb = array(); |
|
$breadcrumbInfo = $elenco->getBreadcrumb(); |
|
$breadcrumb[$breadcrumbInfo["url"]] = $breadcrumbInfo["label"]; |
|
$breadcrumb["/{$elenco->modulo}/dettaglio.php?codice={$elenco->info["codice"]}"] = __("Dettaglio"); |
|
$breadcrumb[""] = __("Pannello"); |
|
|
|
include_once($root . "/layout/top.php"); |
|
$elenco->printPanelPartecipazione(); |
|
include_once($root . "/layout/bottom.php"); |
|
|
|
} else { |
|
echo '<meta http-equiv="refresh" content="0;URL=/index.php">'; |
|
die(); |
|
} |
|
} else { |
|
echo '<meta http-equiv="refresh" content="0;URL=/index.php">'; |
|
die(); |
|
} |
|
?>
|