Files
gallery3/themes/wind/views/sidebar.html.php
Johan Cwiklinski 6746792bdf Drop short_tags
2018-05-19 17:01:37 +02:00

17 lines
549 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<?= $theme->sidebar_top() ?>
<div id="g-view-menu" class="g-buttonset ui-helper-clearfix">
<?php if ($page_subtype == "album"):?>
<?= $theme->album_menu() ?>
<?php elseif ($page_subtype == "photo") : ?>
<?= $theme->photo_menu() ?>
<?php elseif ($page_subtype == "movie") : ?>
<?= $theme->movie_menu() ?>
<?php elseif ($page_subtype == "tag") : ?>
<?= $theme->tag_menu() ?>
<?php endif ?>
</div>
<?= $theme->sidebar_blocks() ?>
<?= $theme->sidebar_bottom() ?>