18 lines
527 B
PHP
18 lines
527 B
PHP
<table>
|
|
<thead>
|
|
<tr>
|
|
<?php foreach ($viewDatas['formFields'] as $field => $label): ?><th><?= $label ?></th><?php endforeach ?>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php $cnt = 0 ?>
|
|
<?php foreach ($viewDatas['entities'] as $entity): ?>
|
|
<tr>
|
|
<?php foreach ($viewDatas['formFields'] as $field): ?>
|
|
<td><?= $viewDatas['helper']->getFieldView($field, $entity->$field, $viewDatas) ?></td>
|
|
<?php endforeach ?>
|
|
</tr>
|
|
<?php $cnt++ ?>
|
|
<?php endforeach ?>
|
|
</tbody>
|
|
</table>
|