mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 03:19:13 -04:00
25 lines
623 B
PHP
25 lines
623 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<? if ($menu->elements): // Don't show the menu if it has no choices ?>
|
|
<? if ($menu->is_root): ?>
|
|
<ul <?= isset($menu->css_id) ? "id='$menu->css_id'" : "" ?> class="<?= $menu->css_class ?>">
|
|
<? foreach ($menu->elements as $element): ?>
|
|
<?= $element->render() ?>
|
|
<? endforeach ?>
|
|
</ul>
|
|
|
|
<? else: ?>
|
|
|
|
<li title="<?= $menu->label->for_html_attr() ?>">
|
|
<a href="#">
|
|
<?= $menu->label->for_html() ?>
|
|
</a>
|
|
<ul>
|
|
<? foreach ($menu->elements as $element): ?>
|
|
<?= $element->render() ?>
|
|
<? endforeach ?>
|
|
</ul>
|
|
</li>
|
|
|
|
<? endif ?>
|
|
<? endif ?>
|