File: applicationlog.phtml

package info (click to toggle)
icingaweb2 2.12.4-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 15,156 kB
  • sloc: php: 73,914; javascript: 4,987; sql: 333; xml: 75; sh: 72; makefile: 5
file content (29 lines) | stat: -rw-r--r-- 796 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php if (! $this->compact): ?>
<div class="controls separated">
    <?= $this->tabs ?>
    <?= $this->paginator ?>
    <div class="sort-controls-container">
        <?= $this->limiter ?>
    </div>
</div>
<?php endif ?>
<div class="content">
<?php if ($this->logData !== null): ?>
    <table class="action">
    <tbody>
    <?php foreach ($this->logData as $value): ?>
        <?php $datetime = new Datetime($value->datetime) ?>
        <tr>
            <td>
                <?= $this->escape($datetime->format('d.m. H:i')) ?><br />
                <?= $this->escape($value->loglevel) ?>
            </td>
            <td>
                <?= nl2br($this->escape($value->message), false) ?>
            </td>
        </tr>
    <?php endforeach ?>
    </tbody>
    </table>
<?php endif ?>
</div>