aboutsummaryrefslogtreecommitdiff
path: root/app/views/admin/cache/_stats_entry.php
blob: 0c850747ed94a62b83b785dce266f723387a55ed (plain)
1
2
3
4
5
6
7
8
9
10
<? if (is_array($entry)) : ?>
    <dl class="default">
        <? foreach ($entry as $index => $data) : ?>
            <dt><?= htmlReady($index) ?></dt>
            <dd><?= $this->render_partial('admin/cache/_stats_entry', ['entry' => $data]) ?></dd>
        <? endforeach ?>
    </dl>
<? else : ?>
    <?= htmlReady($entry) ?>
<? endif; ?>