mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
24 lines
484 B
PHP
24 lines
484 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<? if ($menu->is_root): ?>
|
|
|
|
<ul 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 ?>
|