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.
17 righe
486 B
17 righe
486 B
<? |
|
if (!empty($elenco)) { |
|
if (!empty($elenco->getPartecipanti())) { |
|
$badge = 0; |
|
$totali = $elenco->getTotaliPartecipanti($elenco->info["codice"]); |
|
$badgePartecipanti = $totali["nuovi"] + $totali["aggiornamenti"] + $totali["integrazioni"]; |
|
if (empty($badgePartecipanti)) { |
|
$status = "status-border-success"; |
|
} else { |
|
$status = "status-border-warning"; |
|
} |
|
} else { |
|
$status = "status-border-danger"; |
|
} |
|
} |
|
|
|
?>
|
|
|