trafficmonitor/app/Views/admin/download.php
2025-11-13 10:59:28 +09:00

16 lines
497 B
PHP

<table>
<thead>
<tr>
<?php foreach ($viewDatas['formFields'] as $field => $label): ?><th nowrap><?= $label ?></th><?php endforeach ?>
</tr>
</thead>
<tbody>
<?php foreach ($viewDatas['entities'] as $entity): ?>
<tr>
<?php foreach ($viewDatas['formFields'] as $field): ?>
<td nowrap><?= $viewDatas['helper']->getFieldView($field, $entity->$field, $viewDatas) ?></td>
<?php endforeach ?>
</tr>
<?php endforeach ?>
</tbody>
</table>