mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
Move "My Gallery" navigation tab into the user module and only show it if you're logged in
26 lines
906 B
PHP
26 lines
906 B
PHP
<? defined("SYSPATH") or die("No direct script access."); ?>
|
|
<?= $theme->header_top() ?>
|
|
<img id="gLogo" alt="<?= _("Logo") ?>" src="<?= $theme->url("images/logo.png") ?>" />
|
|
|
|
<div id="gSiteMenu" class="gClearFix">
|
|
<ul class="ui-tabs-nav">
|
|
<?= $theme->navigation_top() ?>
|
|
<li><a href="<?= url::base() ?>"><?= _("HOME") ?></a></li>
|
|
<li><a class="active" href="<?= url::site("albums/1") ?>"><?= _("BROWSE") ?></a></li>
|
|
<li><a href="#"><?= _("UPLOAD") ?></a></li>
|
|
<?= $theme->navigation_bottom() ?>
|
|
<li><a href="#"><?= _("ADMIN") ?></a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<?= $theme->header_bottom() ?>
|
|
|
|
<? if ($page_type != "tag"): ?>
|
|
<ul id="gBreadcrumbs" class="gClearFix">
|
|
<? foreach ($parents as $parent): ?>
|
|
<li><a href="<?= url::site("albums/{$parent->id}") ?>"><?= $parent->title_edit ?></a></li>
|
|
<? endforeach ?>
|
|
<li class="active"><?= $item->title_edit ?></li>
|
|
</ul>
|
|
<? endif ?>
|