2009-10-27 13:46:24 -07:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2018-01-28 12:43:27 +01:00
|
|
|
<?php if (!$menu->is_empty()): // Don't show the menu if it has no choices ?>
|
|
|
|
|
<?php if ($menu->is_root): ?>
|
2010-02-12 20:59:26 -08:00
|
|
|
<ul <?= $menu->css_id ? "id='$menu->css_id'" : "" ?> class="<?= $menu->css_class ?>">
|
2018-01-28 12:43:27 +01:00
|
|
|
<?php foreach ($menu->elements as $element): ?>
|
2009-10-27 13:46:24 -07:00
|
|
|
<?= $element->render() ?>
|
2018-01-28 12:43:27 +01:00
|
|
|
<?php endforeach ?>
|
2009-10-27 13:46:24 -07:00
|
|
|
</ul>
|
|
|
|
|
|
2018-01-28 12:43:27 +01:00
|
|
|
<?php else: ?>
|
2009-10-27 13:46:24 -07:00
|
|
|
|
|
|
|
|
<li title="<?= $menu->label->for_html_attr() ?>">
|
|
|
|
|
<a href="#">
|
|
|
|
|
<?= $menu->label->for_html() ?>
|
|
|
|
|
</a>
|
|
|
|
|
<ul>
|
2018-01-28 12:43:27 +01:00
|
|
|
<?php foreach ($menu->elements as $element): ?>
|
2009-10-27 13:46:24 -07:00
|
|
|
<?= $element->render() ?>
|
2018-01-28 12:43:27 +01:00
|
|
|
<?php endforeach ?>
|
2009-10-27 13:46:24 -07:00
|
|
|
</ul>
|
|
|
|
|
</li>
|
|
|
|
|
|
2018-01-28 12:43:27 +01:00
|
|
|
<?php endif ?>
|
|
|
|
|
<?php endif ?>
|