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/modules/static_page/views/staticpage/category/list.php

9 lines
351 B
PHP
Raw Normal View History

2011-05-14 07:35:33 +00:00
<!-- @todo Move this back into the controller, so that we only have HTML views -->
2010-11-29 22:41:08 +00:00
<table width="100%" border="0">
2011-09-17 10:45:08 +00:00
<?php foreach ($results as $value) { ?>
2010-11-29 22:41:08 +00:00
<tr>
2011-09-17 10:45:08 +00:00
<td class="menu"><a href="<?php echo URL::site(Request::current()->uri(array('action'=>'view','id'=>$value->id))); ?>"><?php echo $value->name; ?></a></td>
2010-11-29 22:41:08 +00:00
</tr>
2011-09-17 10:45:08 +00:00
<?php } ?>
2010-11-29 22:41:08 +00:00
</table>