cfmgrv4/app/Views/templates/download.php
2024-10-08 15:11:33 +09:00

20 lines
511 B
PHP

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