'._('Username').' |
'._('Data').' |
'._('Stato').' |
'._('Indirizzo IP').' |
';
/*
LEGGO DALLA TABELLA ZZ_LOG
*/
if (Auth::isAdmin()) {
$q = 'SELECT * FROM `zz_logs` ORDER BY `created_at` DESC LIMIT 0, 100';
} else {
$q = 'SELECT * FROM `zz_logs` WHERE `idutente`='.prepare($_SESSION['idutente']).' ORDER BY `created_at` DESC LIMIT 0, 100';
}
$rs = $dbo->fetchArray($q);
$n = sizeof($rs);
for ($i = 0; $i < $n; ++$i) {
$id = $rs[$i]['id'];
$idutente = $rs[$i]['idutente'];
$username = $rs[$i]['username'];
$ip = $rs[$i]['ip'];
$timestamp = Translator::timestampToLocale($rs[$i]['created_at']);
if ($rs[$i]['stato'] == 1) {
$type = 'success';
$stato = _('Login riuscito!');
} elseif ($rs[$i]['stato'] == 2) {
$type = 'warning';
$stato = _('Utente non abilitato!');
} elseif ($rs[$i]['stato'] == 3) {
$type = 'warning';
$stato = _("L'utente non ha nessun permesso impostato!");
} else {
$type = 'danger';
$stato = _('Autenticazione fallita!');
}
echo '
'.$username.' |
'.$timestamp.' |
'.$stato.' |
'.$ip.' |
';
}
echo '
';
if (file_exists($docroot.'/include/custom/bottom.php')) {
include $docroot.'/include/custom/bottom.php';
} else {
include $docroot.'/include/bottom.php';
}