Skip to content

Instantly share code, notes, and snippets.

@ynh
Created May 1, 2012 15:20
Show Gist options
  • Save ynh/2568764 to your computer and use it in GitHub Desktop.
Save ynh/2568764 to your computer and use it in GitHub Desktop.
<?php
function rowa($menua, &$cont) {
?><li><a href="<?php echo $cont->Html->url("/").$menua['Menu']['url'];?>"><?php echo $menua['Menu']['name']; ?></a><?php
if (!empty($menua['ChildMenu'])) {
echo "<ul>";
foreach ($menua['ChildMenu'] as $value) {
rowa(array("Menu" => $value), $cont);
}
echo "</ul>";
}
?></li><?php }
?><ul class="menulist" style="padding-left:0">
<?php
$i = 0;
foreach ($menus as $menu):
rowa($menu, $this);
endforeach;
?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment