34 lines
1.6 KiB
PHP
Executable File
34 lines
1.6 KiB
PHP
Executable File
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:8pt;">
|
|
<thead>
|
|
<tr>
|
|
<th style='text-align:center'> <?= _("Portail") ?> </th>
|
|
<th style='text-align:center'> <?= _("Vue") ?> </th>
|
|
<th style="text-align:center"> <?= _("Login") ?> </th>
|
|
<th style='text-align:center'> <?= _("IP") ?> </th>
|
|
<th style="text-align:center"> <?= _("Occurences") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($logconnexions as $logconnexion):
|
|
$login = $logconnexion['login'];
|
|
$ipConnexion = $logconnexion['ipConnexion'];
|
|
$codeApplication = $logconnexion['codeApplication'];
|
|
$application = $logconnexion['application'];
|
|
$vue = $logconnexion['vue'];
|
|
$nbLignes = $logconnexion['nbLignes'];
|
|
?>
|
|
<tr valign="top">
|
|
<td align='center'> <?= $this->nettoyer($logconnexion['application']) ?> </td>
|
|
<td align='center'> <?= $this->nettoyer($logconnexion['vue']) ?> </td>
|
|
<td align='center'> <?= $this->nettoyer($logconnexion['login']) ?> </td>
|
|
<td class="text-center">
|
|
<button style='font-size:8pt;' type="button" onclick="javascript:trouve_coordonnees_geo_ip('<?= $this->nettoyer($logconnexion['ipConnexion']); ?>');"> <?= $this->nettoyer($logconnexion['ipConnexion']); ?> </button>
|
|
</td>
|
|
<td class="text-center">
|
|
<button style='font-size:8pt;' type="button" onclick="javascript:afficher_liste_logpagesvisit_detail('<?= $login; ?>', '<?= $ipConnexion; ?>', '<?= $codeApplication; ?>', '<?= $application; ?>', '<?= $vue; ?>', );"> <?= $nbLignes; ?> </button>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|