dbmsv4/app/Views/admin/popup/download.php
2025-11-21 13:10:03 +09:00

17 lines
553 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): ?>
<?php $viewDatas['entity'] = $entity ?>
<tr>
<?php foreach ($viewDatas['formFields'] as $field => $label): ?>
<td nowrap><?= $viewDatas['helper']->getFieldView($field, $entity->$field, $viewDatas) ?></td>
<?php endforeach ?>
</tr>
<?php endforeach ?>
</tbody>
</table>