production/Vue/Ajaxlogconnexion/index.php
2025-12-01 16:12:12 +00:00

56 lines
2.2 KiB
PHP
Executable File

<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:9pt;">
<thead>
<tr>
<th style='text-align:center'> <?= _("Portail") ?> </th>
<th style="text-align:center"> <?= _("Occurences") ?> </th>
</tr>
</thead>
<tbody>
<?php foreach ($cumullogconnexions as $cumullogconnexion):
?>
<tr valign="top">
<td align='center'> <?= $this->nettoyer($cumullogconnexion['application']) ?> </td>
<td align='center'> <?= format_N($this->nettoyer($cumullogconnexion['nbLignes'])) ?> </td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:8pt;">
<thead>
<tr>
<th style="text-align:center"> <?= _("Login") ?> </th>
<th style="text-align:center"> <?= _("Utilisateur") ?> </th>
<th style="text-align:center"> <?= _("Entité") ?> </th>
<th style="text-align:center"> <?= _("Date") ?> </th>
<th style='text-align:center'> <?= _("IP") ?> </th>
<th style='text-align:center'> <?= _("Succès") ?> </th>
<th style='text-align:center'> <?= _("Portail") ?> </th>
</tr>
</thead>
<tbody>
<?php foreach ($logconnexions as $logconnexion):
$success = $logconnexion['success'];
?>
<tr valign="top">
<td align='center'> <?= $this->nettoyer($logconnexion['login']) ?> </td>
<td align='center'> <?= $this->nettoyer($logconnexion['utilisateur']) ?> </td>
<td align='center'> <?= $this->nettoyer($logconnexion['entite']) ?> </td>
<td align='center'> <?= dateheureLang($this->nettoyer($logconnexion['heureConnexion'])) ?> </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>
<?php if($success=='1'): ?>
<td align='center'> <input type="checkbox" checked disabled ></td>
<?php else: ?>
<td align='center'> <input type="checkbox" disabled ></td>
<?php endif; ?>
<td align='center'> <?= $this->nettoyer($logconnexion['application']) ?> </td>
</tr>
<?php endforeach; ?>
</tbody>
</table>