%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.57 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/proc/self/root/var/www/html/old/modules/mod_tabs_gk5/tmpl/ |
Upload File : |
<?php
/**
* Tabs GK5 - content template
* @package Joomla!
* @Copyright (C) 2009-2012 Gavick.com
* @ All rights reserved
* @ Joomla! is Free Software
* @ Released under GNU/GPL License : http://www.gnu.org/copyleft/gpl.html
* @version $Revision: GK5 1.0 $
**/
// access restriction
defined('_JEXEC') or die('Restricted access');
?>
<?php if(count($this->tabs["title"]) > 0) : ?>
<div id="<?php echo $this->config['module_id'];?>" class="gkTabsGK5" data-config="<?php echo $config_data; ?>" data-swipe="<?php echo $this->config['mobile_swipe'];?>">
<div class="gkTabsWrap <?php echo ($this->config['tabs_position'] == 'left' || $this->config['tabs_position'] == 'right') ? 'horizontal' : 'vertical'; ?>">
<?php if($this->config['tabs_position'] == 'top' || $this->config['tabs_position'] == 'left') : ?>
<ol class="gkTabsNav" data-amount="<?php echo count($this->tabs["title"]); ?>">
<?php if(isset($this->config['tabs_pre_text']) && $this->config['tabs_pre_text'] != '') : ?>
<li class="gkTabsPreText"><strong><?php echo $this->config['tabs_pre_text']; ?></strong></li>
<?php endif ; ?>
<?php for($i = 0; $i < count($this->tabs["title"]); $i++) : ?>
<?php $active_class = ($this->active_tab == $i + 1) ? ' active' : ''; ?>
<li<?php if($this->tabs["id"][$i] != '') echo ' id="'.($this->tabs['id'][$i]).'"'; ?> class="gkTab gkTabs-<?php echo ($i+1) . $active_class; ?>" data-animation="<?php echo $this->tabs['animation'][$i]!= '' ? $this->tabs['animation'][$i] : 'default'; ?>">
<?php if($this->config['tabs_spans'] == '1'): ?><span><?php endif; ?>
<?php echo $this->tabs["title"][$i]; ?>
<?php if($this->config['tabs_spans'] == '1'): ?></span><?php endif; ?>
</li>
<?php endfor; ?>
</ol>
<?php endif; ?>
<div class="gkTabsContainer">
<?php $this->moduleRender(); ?>
</div>
<?php if($this->config['tabs_position'] == 'bottom' || $this->config['tabs_position'] == 'right') : ?>
<ol class="gkTabsNav" data-amount="<?php echo count($this->tabs["title"]); ?>">
<?php if($this->config['tabs_pre_text'] != '') : ?>
<li class="gkTabsPreText"><strong><?php echo $this->config['tabs_pre_text']; ?></strong></li>
<?php endif ; ?>
<?php for($i = 0; $i < count($this->tabs["title"]); $i++) : ?>
<?php $active_class = ($this->active_tab == $i + 1) ? ' active' : ''; ?>
<li<?php if($this->tabs["id"][$i] != '') echo ' id="'.($this->tabs['id'][$i]).'"'; ?> class="gkTab gkTabs-<?php echo ($i+1) . $active_class; ?>" data-animation="<?php echo $this->tabs['animation'][$i]!= '' ? $this->tabs['animation'][$i] : 'default'; ?>">
<?php if($this->config['tabs_spans'] == '1'): ?><span><?php endif; ?>
<?php echo $this->tabs["title"][$i]; ?>
<?php if($this->config['tabs_spans'] == '1'): ?></span><?php endif; ?>
</li>
<?php endfor; ?>
</ol>
<?php endif; ?>
</div>
<?php if(
$this->config['buttons'] == 1 &&
(
$this->config['tabs_position'] == 'top' ||
$this->config['tabs_position'] == 'bottom' ||
$this->config['tabs_position'] == 'disabled'
)
) : ?>
<div class="gkTabsButtonNext">next</div>
<div class="gkTabsButtonPrev">prev</div>
<?php endif; ?>
</div>
<?php else : ?>
<?php echo JText::_('MOD_TABS_GK5_NO_TABS_TO_SHOW'); ?>
<?php endif; ?>