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.
18 righe
761 B
18 righe
761 B
<? |
|
$configPath = substr(__DIR__,0,strpos(__DIR__,"/public_html"))."/config.php"; |
|
include_once($configPath); |
|
if (!empty($_SESSION["utente"]) && $_SESSION["utente"]->permission("albo.consip")) { |
|
$dataSet = jsonToArray(__DIR__."/dataset.json"); |
|
if (!empty($dataSet)) { |
|
foreach($dataSet AS $id =>$set) { ?> |
|
<button onclick="showModalWithURL('/backend/albo/consip/form.php?id=<?= base64_encode($id) ?>')" class="btn btn-block btn-info"> |
|
<?= $set["nome"] ?> |
|
</button> |
|
<? } |
|
} else { |
|
alertManager::printWarningBox(__("Nessun dato disponibile")); |
|
} |
|
} else { |
|
header('HTTP/1.0 403 Forbidden'); |
|
die(); |
|
}
|
|
|