aboutsummaryrefslogtreecommitdiff
path: root/app/views/admin/cache/stats.php
blob: 9de9bafb3e978249556ea2becc9627279f582e0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<section class="contentbox">
    <header>
        <h1><?= _('Cache-Statistiken') ?></h1>
    </header>
    <br>
    <ul>
        <? foreach ($stats as $index => $data) : ?>
            <li>
                <strong><?= htmlReady($index) ?></strong>
                <?= $this->render_partial('admin/cache/_stats_entry', ['entry' => $data]) ?>
            </li>
        <? endforeach ?>
    </ul>
    <br>
</section>