$configPath = substr(__DIR__, 0, strpos(__DIR__, "public_html")) . "/config.php";
include_once($configPath);
if (!empty($_SESSION["utente"]) && $_SESSION["utente"]->permission('progetti')) {
$immobili = progetto::getImmobili();
?>
= __("Gestione immobili") ?>
if (!empty($immobili)) {
?>
| = __("Immobile") ?> |
|
foreach($immobili AS $immobile) {
?>
| = $immobile["descrizione"] ?> |
|
}
?>
} else {
alertManager::printWarningBox(__("Nessun risultato"));
}
}
?>