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.
18 righe
396 B
18 righe
396 B
<? |
|
$show = false; |
|
if (!empty($anac)) { |
|
if ($_SESSION["utente"]->permission("simog")) { |
|
$schedeCheck = $anac->getSchede($codice_lotto); |
|
if (!empty($schedeCheck)) { |
|
$badgeSchedeInvio = 0; |
|
foreach ($schedeCheck AS $sch) { |
|
if ($sch["stato"] === "1") { |
|
$show = true; |
|
$badgeSchedeInvio++; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
|
|
?>
|