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.
41 righe
1.2 KiB
41 righe
1.2 KiB
<? |
|
$configPath = substr(__DIR__,0,strpos(__DIR__,"/public_html"))."/config.php"; |
|
include_once($configPath); |
|
if (!empty($_SESSION["utente"]) && $_SESSION["utente"]->permission($radice)) { |
|
$vocabolario = jsonToArray(__DIR__."/vocabolario.json"); |
|
foreach($vocabolario as $sezione) { |
|
?> |
|
<div class="card my-3"> |
|
<div class="card-header"> |
|
<h3 class="card-title"><?= $sezione["modulo"] ?></h3> |
|
</div> |
|
<div class="card-body m-0 p-0"> |
|
<table class="table table-condensed table-hover table-striped m-0 p-0"> |
|
<thead> |
|
<tr> |
|
<th><?= __("Chiave") ?></th> |
|
<th><?= __("Descrizione") ?></th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
<? |
|
foreach($sezione["voci"] AS $chiave => $descrizione) { |
|
?> |
|
<tr> |
|
<td class="text-center">##--<?= $chiave ?>--##</td> |
|
<td><?= $descrizione ?></td> |
|
</tr> |
|
<? |
|
} |
|
?> |
|
</tbody> |
|
</table> |
|
</div> |
|
</div> |
|
<? |
|
} |
|
} else { |
|
header('HTTP/1.0 403 Forbidden'); |
|
die(); |
|
} |
|
?>
|