blob: 1bc650c10f975e48972cf6e2639fe376dae24a7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
/**
* @var string $title
* @var array $configs
*/
?>
<table class="default">
<caption>
<?= htmlReady($title) ?>
<? if (!empty($subtitle)): ?>
<br>
<small><?= htmlReady($subtitle) ?></small>
<? endif ?>
</caption>
<?= $this->render_partial('admin/configuration/table-header.php') ?>
<tbody>
<? foreach ($configs as $config): ?>
<?= $this->render_partial('admin/configuration/table-row.php', $config) ?>
<? endforeach ?>
</tbody>
</table>
|