dbms/app/Views/admin/download.php
2025-06-09 18:35:02 +09:00

20 lines
546 B
PHP

<table>
<thead>
<tr>
<?php foreach ($viewDatas['control']['index_fields'] as $field): ?>
<th><?= lang("{$viewDatas['class_path']}.label.{$field}") ?></th>
<?php endforeach ?>
</tr>
</thead>
<tbody>
<?php $cnt = 0 ?>
<?php foreach ($viewDatas['entities'] as $entity): ?>
<tr>
<?php foreach ($viewDatas['control']['index_fields'] as $field): ?>
<td><?= $entity->$field ?></td>
<?php endforeach ?>
</tr>
<?php $cnt++ ?>
<?php endforeach ?>
</tbody>
</table>