Files
gallery3/modules/gallery/views/menu.html.php

25 lines
646 B
PHP
Raw Normal View History

<?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): ?>
<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): ?>
<?= $element->render() ?>
2018-01-28 12:43:27 +01:00
<?php endforeach ?>
</ul>
2018-01-28 12:43:27 +01:00
<?php else: ?>
<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): ?>
<?= $element->render() ?>
2018-01-28 12:43:27 +01:00
<?php endforeach ?>
</ul>
</li>
2018-01-28 12:43:27 +01:00
<?php endif ?>
<?php endif ?>