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.
22 righe
780 B
22 righe
780 B
<? |
|
|
|
$configPath = substr(__DIR__,0,strpos(__DIR__,"/public_html"))."/config.php"; |
|
include_once($configPath); |
|
|
|
|
|
if (!empty($_SESSION["utente"]->oe) && isset($_POST["espd"])) { |
|
$json = json_decode(file_get_contents(__DIR__."/definition.json"),true); |
|
$values = DGUE::findValues($_POST["espd"],$json); |
|
$testo = ""; |
|
if ($values["_0"][0] == "true") { |
|
$testo .= __("Si applica quanto previsto dell’art.95 del Codice della Crisi di Impresa (D.lgs 14/2019)?") . "\n\r"; |
|
$testo .= ($values["_0"][2] == "true") ? "Si" : "No"; |
|
$testo .= "\n\r"; |
|
if ($values["_0"][2] == "true") { |
|
$testo .= __("Provvedimento autorizzativo") . "\n\r"; |
|
$testo .= $values["_0"][3]; |
|
$testo .= "\n\r"; |
|
} |
|
} |
|
echo $testo; |
|
}
|
|
|