2009-10-27 13:46:24 -07:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2009-10-27 14:00:32 -07:00
|
|
|
<? if ($menu->elements): // Don't show the menu if it has no choices ?>
|
2009-10-27 13:46:24 -07:00
|
|
|
<? if ($menu->is_root): ?>
|
2009-11-06 13:03:48 -08:00
|
|
|
<ul <?= isset($menu->css_id) ? "id='$menu->css_id'" : "" ?> class="<?= $menu->css_class ?>">
|
2009-10-27 13:57:36 -07:00
|
|
|
<? foreach ($menu->elements as $element): ?>
|
2009-10-27 13:46:24 -07:00
|
|
|
<?= $element->render() ?>
|
|
|
|
|
<? endforeach ?>
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
<? else: ?>
|
|
|
|
|
|
|
|
|
|
<li title="<?= $menu->label->for_html_attr() ?>">
|
|
|
|
|
<a href="#">
|
|
|
|
|
<?= $menu->label->for_html() ?>
|
|
|
|
|
</a>
|
|
|
|
|
<ul>
|
2009-10-27 13:57:36 -07:00
|
|
|
<? foreach ($menu->elements as $element): ?>
|
2009-10-27 13:46:24 -07:00
|
|
|
<?= $element->render() ?>
|
|
|
|
|
<? endforeach ?>
|
|
|
|
|
</ul>
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
<? endif ?>
|
2009-10-27 14:00:32 -07:00
|
|
|
<? endif ?>
|