Giuseppe Criscione d3e591f7c9 Initial commit
2018-06-16 16:41:58 +02:00

24 lines
448 B
PHP
Executable File

<div class="component">
<h3 class="caption"><?= $this->label('options.options') ?></h3>
<?= $tabs ?>
<?php
foreach ($info as $section => $data):
?>
<div class="section-header"><?= $section ?></div>
<table class="info-data">
<?php
foreach ($data as $key => $value):
?>
<tr>
<td class="info-data-key"><?= $key ?></td>
<td class="info-data-value"><?= $value ?></td>
</tr>
<?php
endforeach;
?>
</table>
<?php
endforeach;
?>
</div>