This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/application/views/table/list_body.php

8 lines
278 B
PHP

<tr class="list-data">
<?php foreach ($td as $col => $details) { ?>
<td class="<?php echo $details['class']; ?>">
<?php echo $details['url'] ? sprintf(HTML::anchor($details['url'].$details['value'],$details['value'])) : $details['value']; ?>
</td>
<?php } ?>
</tr>