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.
20 righe
851 B
20 righe
851 B
<? |
|
if (isset($elenco)) { |
|
$status = "status-border-danger"; |
|
$richieste = $elenco->getRichieste(); |
|
$forms = $elenco->getForms(); |
|
if (!empty($richieste) || !empty($forms)) { |
|
$status = "status-border-success"; |
|
if (empty($forms) && (count($richieste) === 1) && ($richieste[0]["titolo"] === "DGUE") && $elenco->info["stato"] < 20) { |
|
$status = "status-border-warning"; |
|
$txt = __("E' stato richiesto solo il DGUE"); |
|
$href = "/backend/albi_commissione/elaborazione/index.php?codice={$elenco->info["codice"]}"; |
|
$alertManager->addWarningAlert($txt,$href); |
|
} |
|
} else { |
|
$txt = __("Nessun documento richiesto ai partecipanti"); |
|
$href = "/backend/albi_commissione/elaborazione/index.php?codice={$elenco->info["codice"]}"; |
|
$alertManager->addDangerAlert($txt,$href); |
|
} |
|
} |
|
?>
|