PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /home/jairosvt/public_html/afmedios.com/modules/mod_roktabs/tmpl/ |
| Server: Linux server2.noticiasdecolima.com 4.18.0-553.30.1.el8_10.x86_64 #1 SMP Tue Nov 26 02:30:26 EST 2024 x86_64 IP: 107.161.180.42 |
| Dir : /home/jairosvt/public_html/afmedios.com/modules/mod_roktabs/tmpl/default.php |
<?php
/**
* RokTabs Module
*
* @package Joomla
* @subpackage RokTabs Module
* @copyright Copyright (C) 2009 RocketTheme. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see RT-LICENSE.php
* @author RocketTheme, LLC
*
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
$document =& JFactory::getDocument();
$path = JPATH_SITE . '/modules/mod_roktabs/tmpl/';
$uri_path = JURI::base() . 'modules/mod_roktabs/tmpl/';
$count = count($list);
// options
$style = $params->get('style', 'base');
$width = $params->get('width', 500);
$tabs = $params->get('tabs_count', 3);
$tabs_position = $params->get('tabs_position', 'top');
$tabs_title = $params->get('tabs_title', 'content'); // content | h6 | incremental
$tabs_incremental = $params->get('tabs_incremental', 'Tab ');
$tabs_hideh6 = $params->get('tabs_hideh6', 1);
$linksMargins = $params->get('linksMargins', 0);
$duration = $params->get('duration', 600);
$transition_type = $params->get('transition_type', 'scrolling');
$transition_fx = $params->get('transition_fx', 'Quad.easeInOut');
$autoplay = $params->get('autoplay', 0);
$autoplay_delay = $params->get('autoplay_delay', 2000);
if (intval($tabs) > $count) $tabs = $count;
else if (intval($tabs) == 0) $tabs = $count;
if (strlen($tabs_incremental) <= 0) $tabs_incremental = "Tab ";
$style_css = $path . $style . '/roktabs.css';
$css = $uri_path . $style . '/roktabs.css';
if (file_exists($style_css)) $document->addStyleSheet($css);
if (!defined('ROKTABS_JS')) {
$document->addScript($uri_path . 'roktabs.js');
define('ROKTABS_JS',1);
}
$write_tabs = modRokTabsHelper::write_tabs($tabs, $tabs_position, $list, $tabs_title, $tabs_incremental, $tabs_hideh6);
?>
<script type="text/javascript">
RokTabsOptions.duration.push(<?php echo $duration; ?>);
RokTabsOptions.transition.push(Fx.Transitions.<?php echo $transition_fx; ?>);
RokTabsOptions.auto.push(<?php echo $autoplay; ?>);
RokTabsOptions.delay.push(<?php echo $autoplay_delay; ?>);
RokTabsOptions.type.push('<?php echo $transition_type; ?>');
RokTabsOptions.linksMargins.push(<?php echo $linksMargins; ?>);
</script>
<div class="roktabs-wrapper" style="width: <?php echo $width; ?>px;">
<div class="roktabs <?php echo $style; ?>">
<!--<div class="roktabs-arrows">
<span class="previous">←</span>
<span class="next">→</span>
</div>-->
<?php
if ($tabs_position == 'top' || $tabs_position == 'hidden') echo $write_tabs;
?>
<div class="roktabs-container-tr">
<div class="roktabs-container-tl">
<div class="roktabs-container-br">
<div class="roktabs-container-bl">
<div class="roktabs-container-inner">
<div class="roktabs-container-wrapper">
<?php
if ($tabs == 0) $tabs = count($list);
for($i = 0; $i < $tabs; $i++) {
if ($list[$i]->title != '' && $list[$i]->introtext != '') {
echo "<div class='roktabs-tab".($i+1)."'>\n";
echo " <div class='wrapper'>\n";
echo $list[$i]->introtext;
echo " </div>";
echo "</div>\n";
}
}
?>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
if ($tabs_position == 'bottom') echo $write_tabs;
?>
</div>
</div>
<?php
?>