| Server IP : 68.178.247.200 / Your IP : 216.73.217.50 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/x9dppmxs4rgd/public_html/wp-content/plugins/wordfence/lib/dashboard/ |
Upload File : |
<?php if (!defined('WORDFENCE_VERSION')) { exit; } ?>
<?php //$data is defined here as an array of login attempts: array('t' => timestamp, 'name' => username, 'ip' => IP address) ?>
<table class="wf-table wf-table-hover">
<thead>
<tr>
<th><?php esc_html_e('Username', 'wordfence') ?></th>
<th><?php esc_html_e('IP', 'wordfence') ?></th>
<th><?php esc_html_e('Date', 'wordfence') ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($data as $l): ?>
<tr>
<td><?php echo esc_html($l['name']); ?></td>
<td><?php echo esc_html($l['ip']); ?></td>
<td><?php
if (time() - $l['t'] < 86400) {
echo esc_html(wfUtils::makeTimeAgo(time() - $l['t']) . ' ago');
}
else {
echo esc_html(wfUtils::formatLocalTime(get_option('date_format') . ' ' . get_option('time_format'), (int) $l['t']));
}
?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>