16 lines
497 B
PHP
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>
|