8 lines
288 B
PHP
8 lines
288 B
PHP
|
<tr class="<?php echo $trc; ?>">
|
||
|
<?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>
|