24 lines
511 B
PHP
Raw Normal View History

2018-06-16 16:41:58 +02:00
<div class="component">
2018-06-16 17:49:27 +02:00
<h3 class="caption"><?= $this->label('options.options') ?></h3>
<?= $tabs ?>
2018-06-16 16:41:58 +02:00
<?php
2018-06-16 17:49:27 +02:00
foreach ($info as $section => $data):
2018-06-16 16:41:58 +02:00
?>
2018-06-16 17:49:27 +02:00
<div class="section-header"><?= $section ?></div>
<table class="info-data">
2018-06-16 16:41:58 +02:00
<?php
2018-06-16 17:49:27 +02:00
foreach ($data as $key => $value):
2018-06-16 16:41:58 +02:00
?>
2018-06-16 17:49:27 +02:00
<tr>
<td class="info-data-key"><?= $key ?></td>
<td class="info-data-value"><?= $value ?></td>
</tr>
2018-06-16 16:41:58 +02:00
<?php
2018-06-16 17:49:27 +02:00
endforeach;
2018-06-16 16:41:58 +02:00
?>
2018-06-16 17:49:27 +02:00
</table>
2018-06-16 16:41:58 +02:00
<?php
2018-06-16 17:49:27 +02:00
endforeach;
2018-06-16 16:41:58 +02:00
?>
</div>