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.
28 righe
962 B
28 righe
962 B
<? |
|
if (!empty($anac->info)) { |
|
if ($_SESSION["utente"]->permission("simog")) { |
|
$logSimog = $anac->getLastSimogLog("pubblica"); |
|
if (empty($logSimog)) { |
|
if ($anac->info["stato"] < 20) { |
|
$status = "status-border-warning"; |
|
if (!empty($alertManager)) { $alertManager->addDangerAlert(__("Gara non pubblicata"),$hrefComando); } |
|
} else { |
|
$status = "status-border-success"; |
|
} |
|
} else { |
|
if ($logSimog["esito"] == 1) { |
|
$status = "status-border-success"; |
|
} else { |
|
if ($anac->info["stato"] < 20) { |
|
$status = "status-border-danger"; |
|
if (!empty($alertManager)) { $alertManager->addDangerAlert($logSimog["msg"],$hrefComando); } |
|
} else { |
|
$status = "status-border-warning"; |
|
if (!empty($alertManager)) { $alertManager->addWarningAlert($logSimog["msg"],$hrefComando); } |
|
} |
|
} |
|
} |
|
} |
|
} |
|
|
|
?>
|