File: /home/clinicadentalargarate.com/public_html/wp-content/themes/thefox/vc_templates/vc_tabs.php
<?php
$output = $title = $interval = $el_class = '';
extract( shortcode_atts( array(
'title' => '',
'interval' => 0,
'type' => '',
'pos' => 'rd_vtab_left',
'color' => '',
'mt' => '',
'mb' => '',
'el_class' => ''
), $atts ) );
$el_class = $this->getExtraClass( $el_class );
$element = 'horizontal';
if ( 'vc_tour' == $this->shortcode ) $element = 'vertical';
// Extract tab titles
preg_match_all( '/vc_tab([^\]]+)/i', $content, $matches, PREG_OFFSET_CAPTURE );
$tab_titles = array();
/**
* vc_tabs
*
*/
if ( isset( $matches[1] ) ) {
$tab_titles = $matches[1];
}
$tabs_nav = '';
$tabs_nav .= '<div class="tab-holder rd_tabs mc_rd_tabs '.$element.' '.$type.' '.$color.' '.$pos.'" style="margin-top:'.$mt.'px; margin-bottom:'.$mb.'px;"><div class="tab-hold tabs-wrapper"><ul id="tabs" class="tabs">';
foreach ( $tab_titles as $tab ) {
$tab_atts = shortcode_parse_atts($tab[0]);
if(isset($tab_atts['title'])) {
if(isset($tab_atts['use_icon']) && $tab_atts['use_icon'] == 'yes'){
$tab_id = RandomString(20);
if ( ! empty( $atts['icon'] ) ) {
// Don't load the CSS files to trim loading time, include the specific styles via PHP
// wp_enqueue_style( '4k-icon-' . $cssFile, plugins_url( 'icons/css/' . $cssFile . '.css', __FILE__ ) );
$cssFile = substr( $tab_atts['icon'], 0, stripos( $tab_atts['icon'], '-' ) );
wp_enqueue_style( '4k-icons', RD_DIRECTORY . '/includes/4k-icons/css/icon-styles.css' , null, VERSION_GAMBIT_VC_4K_ICONS );
wp_enqueue_script( '4k-icons', RD_DIRECTORY . '/includes/4k-icons/js/script-ck.js', array( 'jquery' ), VERSION_GAMBIT_VC_4K_ICONS, true );
}
global $iconContents;
include('icon-contents.php' );
// Normal styles used for everything
$cssFile = substr( $tab_atts['icon'], 0, stripos( $tab_atts['icon'], '-' ) );
$iconFile = RD_DIRECTORY . '/includes/4k-icons/icons/fonts/' . $cssFile;
$iconFile = apply_filters( '4k_icon_font_pack_path', $iconFile, $cssFile );
// Fix ligature icons (these are icons that use more than 1 symbol e.g. mono social icons)
$ligatureStyle = '';
if ( $cssFile == 'mn' ) {
$ligatureStyle = '-webkit-font-feature-settings:"liga","dlig";-moz-font-feature-settings:"liga=1, dlig=1";-moz-font-feature-settings:"liga","dlig";-ms-font-feature-settings:"liga","dlig";-o-font-feature-settings:"liga","dlig";
font-feature-settings:"liga","dlig";
text-rendering:optimizeLegibility;';
}
$iconCode = '';
if ( ! empty( $tab_atts['icon'] ) ) {
$iconCode = $iconContents[ $tab_atts['icon'] ];
}
$ret = "<style type='text/css'>
@font-face {
font-family: '" . $cssFile . "';
src:url('" . $iconFile . ".eot');
src:url('" . $iconFile . ".eot?#iefix') format('embedded-opentype'),
url('" . $iconFile . ".woff') format('woff'),
url('" . $iconFile . ".ttf') format('truetype'),
url('" . $iconFile . ".svg#oi') format('svg');
font-weight: normal;
font-style: normal;
}
#rand_".$tab_id." ." . $tab_atts['icon'] . ":before { font-family: '" . $cssFile . "'; font-weight: normal; font-style: normal; }
#rand_".$tab_id." .". $tab_atts['icon'] . ":before { content: \"" . $iconCode . "\"; $ligatureStyle }
";
$ret .= "</style>";
// Compress styles a bit for readability
$ret = preg_replace( "/\s?(\{|\})\s?/", "$1",
preg_replace( "/\s+/", " ",
str_replace( "\n", "", $ret ) ) )
. "\n";
$tabs_nav .= $ret;
$tabs_nav .= '<li class="tabli" id="rand_'.$tab_id.'"><a href="#tab-' . ( isset( $tab_atts['tab_id'] ) ? $tab_atts['tab_id'] : sanitize_title( $tab_atts['title'] ) ) . '"><i class="' . $tab_atts['icon'] . '"></i>' . $tab_atts['title'] . '</a></li>';
}else{
$tabs_nav .= '<li class="tabli"><a href="#tab-' . ( isset( $tab_atts['tab_id'] ) ? $tab_atts['tab_id'] : sanitize_title( $tab_atts['title'] ) ) . '">' . $tab_atts['title'] . '</a></li>';
}
}
}
$tabs_nav .= '</ul>' . "\n";
$css_class = apply_filters( VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, trim( $element . ' wpb_content_element ' . $el_class ), $this->settings['base'], $atts );
$output .= wpb_widget_title( array( 'title' => $title, 'extraclass' => $element . '_heading' ) );
$output .= "\n\t\t\t" . $tabs_nav;
$output .= "<div class='tab-box tabs-container'>";
$output .= "\n\t\t\t" . wpb_js_remove_wpautop( $content );
$output .= "</div></div></div>";
echo !empty( $output ) ? $output : '';