2015-04-17 16:09:17 +02:00
|
|
|
<?php if (! $this->compact): ?>
|
2014-03-19 16:57:11 +01:00
|
|
|
<div class="controls">
|
2015-04-17 16:09:17 +02:00
|
|
|
<?= $this->tabs; ?>
|
|
|
|
<?= $this->sortBox; ?>
|
|
|
|
<?= $this->limiter; ?>
|
|
|
|
<?= $this->paginator; ?>
|
|
|
|
<?= $this->filterEditor; ?>
|
2014-03-19 16:57:11 +01:00
|
|
|
</div>
|
2015-04-17 16:09:17 +02:00
|
|
|
<?php endif ?>
|
2014-03-19 16:57:11 +01:00
|
|
|
<div class="content">
|
2014-09-03 12:44:23 +02:00
|
|
|
<?php if ($this->logData !== null): ?>
|
2014-03-19 16:57:11 +01:00
|
|
|
<table class="action">
|
|
|
|
<tbody>
|
2014-03-19 17:37:37 +01:00
|
|
|
<?php foreach ($this->logData as $value): ?>
|
|
|
|
<?php $datetime = new Datetime($value->datetime); ?>
|
2014-03-19 16:57:11 +01:00
|
|
|
<tr class="state">
|
|
|
|
<td style="width: 6em; text-align: center">
|
2014-03-19 17:37:37 +01:00
|
|
|
<?= $this->escape($datetime->format('d.m. H:i')) ?><br />
|
|
|
|
<?= $this->escape($value->loglevel) ?>
|
2014-03-19 16:57:11 +01:00
|
|
|
</td>
|
|
|
|
<td>
|
2014-03-19 17:37:37 +01:00
|
|
|
<?= $this->escape($value->message) ?>
|
2014-03-19 16:57:11 +01:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2014-09-03 12:44:23 +02:00
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|