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.
19 righe
523 B
19 righe
523 B
<? |
|
if (isset($cpn)) { |
|
$status = "status-border-danger"; |
|
$atti = $cpn->getAtti(); |
|
if (!empty($atti)) { |
|
$status = "status-border-success"; |
|
foreach($atti AS $atto) { |
|
if ($atto["stato"] < 100) { |
|
$status = "status-border-warning"; |
|
} |
|
} |
|
if ($status == "status-border-warning") { |
|
$alertManager->addWarningAlert(__("Atti da inviare"),$hrefComando); |
|
} |
|
} else { |
|
$alertManager->addDangerAlert(__("Nessun atto presente"),$hrefComando); |
|
} |
|
} |
|
?>
|