Файл: adultscript-2.0.3-pro/files/templates/defboot/pornstar_menu.tpl.php
Строк: 62
<?php defined('_VALID') or die('Restricted Access!'); ?>
<div class="btn-toolbar pull-right" role="group">
<div class="btn-group" role="group">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
<?php $icons = array('recent' => 'calendar', 'popular' => 'eye', 'rated' => 'thumbs-up', 'subscribed' => 'rss', 'videos' => 'video-camera'); $order = (isset($this->order)) ? $this->order : 'recent'; ?>
<i class="fa fa-<?php echo $icons[$order],'"></i> ',__($order); ?>
<span class="caret"></span>
<span class="sr-only">Toggle Dropdown</span>
</button>
<ul class="dropdown-menu" role="menu">
<li<?php if (isset($this->order) && $this->order == 'recent'): echo ' class="active"'; endif; ?>><a href="<?php echo build_url('recent', $this->letter); ?>"><i class="fa fa-calendar"></i> <?php echo __('recent'); ?></a></li>
<li<?php if (isset($this->order) && $this->order == 'popular'): echo ' class="active"'; endif; ?>><a href="<?php echo build_url('popular', $this->letter); ?>"><i class="fa fa-eye"></i> <?php echo __('popular'); ?></a></li>
<li<?php if (isset($this->order) && $this->order == 'rated'): echo ' class="active"'; endif; ?>><a href="<?php echo build_url('rated', $this->letter); ?>"><i class="fa fa-thumbs-up"></i> <?php echo __('rated'); ?></a></li>
<li<?php if (isset($this->order) && $this->order == 'subscribed'): echo ' class="active"'; endif; ?>><a href="<?php echo build_url('subscribed', $this->letter); ?>"><i class="fa fa-rss"></i> <?php echo __('subscribed'); ?></a></li>
<li<?php if (isset($this->order) && $this->order == 'videos'): echo ' class="active"'; endif; ?>><a href="<?php echo build_url('videos', $this->letter); ?>"><i class="fa fa-video-camera"></i> <?php echo __('videos'); ?></a></li>
</ul>
</div>
<div class="btn-group" role="group">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
<?php echo __('letter'),': <strong>'; if ($this->letter == 'all'): echo __('all'); else: echo strtoupper($this->letter); endif; ?></strong>
<span class="caret"></span>
<span class="sr-only">Toggle Dropdown</span>
</button>
<ul class="dropdown-menu dropdown-menu-right letter" role="menu">
<li<?php if ($this->letter == 'all'): echo ' class="active"'; endif; ?>><a href="<?php echo build_url($this->order, 'all', 1); ?>"><?php echo __('all'); ?></a></li>
<?php foreach (range('a', 'z') as $letter): ?>
<li<?php if ($this->letter == $letter): echo ' class="active"'; endif; ?>><a href="<?php echo build_url($this->order, $letter, 1),'">',strtoupper($letter); ?></a></li>
<?php endforeach; ?>
</ul>
</div>
</div>