33 lines
849 B
PHP
33 lines
849 B
PHP
<?php
|
|
require_once (__DIR__ . '/../internals/website.php');
|
|
|
|
/** @var PageFrameOptions $FRAME_OPTIONS */ global $FRAME_OPTIONS;
|
|
/** @var URLRoute $ROUTE */ global $ROUTE;
|
|
/** @var Website $SITE */ global $SITE;
|
|
?>
|
|
|
|
<?php
|
|
if (!isset($API_OPTIONS['ulname'])) { $FRAME_OPTIONS->forceResult(400, "Wrong parameters."); return; }
|
|
$ulname = $API_OPTIONS['ulname'];
|
|
?>
|
|
|
|
<div class="stripedtable_container" style="width: 100%;">
|
|
<table class="stripedtable">
|
|
<thead>
|
|
<tr>
|
|
<th>IP</th>
|
|
<th>Version</th>
|
|
<th>Timestamp</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($SITE->modules->UpdatesLog()->getEntries($ulname, 512) as $entry): ?>
|
|
<tr>
|
|
<td><?php echo $entry['ip']; ?></td>
|
|
<td><?php echo $entry['version']; ?></td>
|
|
<td><?php echo $entry['date']; ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|