Submit
Path:
~
/
home
/
getwphos
/
public_html
/
brueggemann
/
wp-content
/
plugins
/
js_composer
/
include
/
classes
/
shortcodes
/
File Content:
vc-tta-tabs.php
<?php /** * Class that handles specific [vc_tta_tabs] shortcode. * * @see js_composer/include/templates/shortcodes/vc_tta_tabs.php */ if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } VcShortcodeAutoloader::getInstance()->includeClass( 'WPBakeryShortCode_Vc_Tta_Accordion' ); /** * Class WPBakeryShortCode_Vc_Tta_Tabs */ class WPBakeryShortCode_Vc_Tta_Tabs extends WPBakeryShortCode_Vc_Tta_Accordion { /** * Layout type. * * @var string */ public $layout = 'tabs'; /** * Enqueue shortcode specific scripts. */ public function enqueueTtaScript() { wp_register_script( 'vc_tabs_script', vc_asset_url( 'lib/vc/vc_tabs/vc-tabs.min.js' ), [ 'vc_accordion_script' ], WPB_VC_VERSION, true ); parent::enqueueTtaScript(); wp_enqueue_script( 'vc_tabs_script' ); } /** * Add wrapper attributes. * * @return string */ public function getWrapperAttributes() { $attributes = []; $attributes[] = 'class="' . esc_attr( $this->getTtaContainerClasses() ) . '"'; $attributes[] = 'data-vc-action="collapse"'; if ( isset( $this->atts['autoplay'] ) ) { $autoplay = $this->atts['autoplay']; if ( $autoplay && 'none' !== $autoplay && intval( $autoplay ) > 0 ) { $attributes[] = 'data-vc-tta-autoplay="' . esc_attr( wp_json_encode( [ 'delay' => intval( $autoplay ) * 1000, ] ) ) . '"'; } } if ( ! empty( $this->atts['el_id'] ) ) { $attributes[] = 'id="' . esc_attr( $this->atts['el_id'] ) . '"'; } return implode( ' ', $attributes ); } /** * Add specific tta classes. * * @return string */ public function getTtaGeneralClasses() { $classes = parent::getTtaGeneralClasses(); if ( ! empty( $this->atts['no_fill_content_area'] ) ) { $classes .= ' vc_tta-o-no-fill'; } if ( isset( $this->atts['tab_position'] ) ) { $classes .= ' ' . $this->getTemplateVariable( 'tab_position' ); } $classes .= ' ' . $this->getParamAlignment( $this->atts, $this->content ); return $classes; } /** * Add attributes position. * * @param array $atts * @param string $content * * @return string|null */ public function getParamTabPosition( $atts, $content ) { if ( isset( $atts['tab_position'] ) && strlen( $atts['tab_position'] ) > 0 ) { return 'vc_tta-tabs-position-' . $atts['tab_position']; } return null; } /** * Add tab position top attributes. * * @param array $atts * @param string $content * * @return string|null */ public function getParamTabsListTop( $atts, $content ) { if ( empty( $atts['tab_position'] ) || 'top' !== $atts['tab_position'] ) { return null; } return $this->getParamTabsList( $atts, $content ); } /** * Add tab position top attributes. * * @param array $atts * @param string $content * * @return string|null */ public function getParamTabsListBottom( $atts, $content ) { if ( empty( $atts['tab_position'] ) || 'bottom' !== $atts['tab_position'] ) { return null; } return $this->getParamTabsList( $atts, $content ); } /** * Pagination is on top only if tabs are at bottom * * @param array $atts * @param string $content * * @return string|null */ public function getParamPaginationTop( $atts, $content ) { if ( empty( $atts['tab_position'] ) || 'bottom' !== $atts['tab_position'] ) { return null; } return $this->getParamPaginationList( $atts, $content ); } /** * Pagination is at bottom only if tabs are on top * * @param array $atts * @param string $content * * @return string|null */ public function getParamPaginationBottom( $atts, $content ) { if ( empty( $atts['tab_position'] ) || 'top' !== $atts['tab_position'] ) { return null; } return $this->getParamPaginationList( $atts, $content ); } /** * Add icon to shortcode output. * * @param array $atts * * @return string */ public function constructIcon( $atts ) { vc_icon_element_fonts_enqueue( $atts['i_type'] ); $class = 'vc_tta-icon'; if ( isset( $atts[ 'i_icon_' . $atts['i_type'] ] ) ) { $class .= ' ' . $atts[ 'i_icon_' . $atts['i_type'] ]; } else { $class .= ' fa fa-adjust'; } return '<i class="' . $class . '"></i>'; } /** * Get tabs list html. * * @param array $atts * @param string $content * * @return string */ public function getParamTabsList( $atts, $content ) { $is_page_editable = vc_is_page_editable(); $html = []; $html[] = '<div class="vc_tta-tabs-container">'; $html[] = '<ul class="vc_tta-tabs-list" role="tablist">'; if ( ! $is_page_editable ) { $active_section = $this->getActiveSection( $atts, false ); foreach ( WPBakeryShortCode_Vc_Tta_Section::$section_info as $nth => $section ) { $classes = [ 'vc_tta-tab' ]; if ( ( $nth + 1 ) === $active_section ) { $classes[] = $this->activeClass; } $title = '<span class="vc_tta-title-text">' . wp_kses_post( $section['title'] ) . '</span>'; if ( 'true' === $section['add_icon'] ) { $icon_html = $this->constructIcon( $section ); if ( 'left' === $section['i_position'] ) { $title = $icon_html . $title; } else { $title = $title . $icon_html; } } $a_html = '<a href="#' . $section['tab_id'] . '" data-vc-tabs data-vc-container=".vc_tta" role="tab" aria-selected="false" id="' . esc_attr( "tab-{$section['tab_id']}" ) . '">' . $title . '</a>'; $html[] = '<li class="' . implode( ' ', $classes ) . '" data-vc-tab role="presentation">' . $a_html . '</li>'; } } $html[] = '</ul>'; $html[] = '</div>'; // phpcs:ignore:WordPress.NamingConventions.ValidHookName.UseUnderscores return implode( '', apply_filters( 'vc-tta-get-params-tabs-list', $html, $atts, $content, $this ) ); } /** * Add alignment to shortcode output. * * @param array $atts * @param string $content * * @return string|null */ public function getParamAlignment( $atts, $content ) { if ( isset( $atts['alignment'] ) && strlen( $atts['alignment'] ) > 0 ) { return 'vc_tta-controls-align-' . $atts['alignment']; } return null; } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
core
---
0755
paginator
---
0755
layerslider-vc.php
241 bytes
0644
rev-slider-vc.php
309 bytes
0644
vc-accordion-tab.php
4705 bytes
0644
vc-accordion.php
2463 bytes
0644
vc-basic-grid.php
22111 bytes
0644
vc-btn.php
2823 bytes
0644
vc-button.php
639 bytes
0644
vc-button2.php
643 bytes
0644
vc-column-inner.php
391 bytes
0644
vc-column-text.php
446 bytes
0644
vc-column.php
10182 bytes
0644
vc-container-item-base.php
9780 bytes
0644
vc-copyright.php
2278 bytes
0644
vc-cta-button.php
339 bytes
0644
vc-cta.php
5640 bytes
0644
vc-custom-field.php
344 bytes
0644
vc-custom-heading.php
6872 bytes
0644
vc-empty-space.php
313 bytes
0644
vc-facebook.php
1427 bytes
0644
vc-flexbox-container-item.php
827 bytes
0644
vc-flexbox-container.php
9883 bytes
0644
vc-flickr.php
293 bytes
0644
vc-gallery.php
2811 bytes
0644
vc-gitem-animated-block.php
2355 bytes
0644
vc-gitem-col.php
1955 bytes
0644
vc-gitem-image.php
607 bytes
0644
vc-gitem-post-author.php
553 bytes
0644
vc-gitem-post-categories.php
574 bytes
0644
vc-gitem-post-data.php
1418 bytes
0644
vc-gitem-post-date.php
816 bytes
0644
vc-gitem-post-excerpt.php
683 bytes
0644
vc-gitem-post-meta.php
329 bytes
0644
vc-gitem-post-title.php
675 bytes
0644
vc-gitem-row.php
956 bytes
0644
vc-gitem-zone-a.php
588 bytes
0644
vc-gitem-zone-b.php
587 bytes
0644
vc-gitem-zone-c.php
470 bytes
0644
vc-gitem-zone.php
492 bytes
0644
vc-gitem.php
4600 bytes
0644
vc-gmaps.php
289 bytes
0644
vc-goo-maps.php
862 bytes
0644
vc-googleplus.php
1574 bytes
0644
vc-grid-container-item.php
665 bytes
0644
vc-grid-container.php
10244 bytes
0644
vc-gutenberg.php
438 bytes
0644
vc-hoverbox.php
2153 bytes
0644
vc-icon.php
302 bytes
0644
vc-images-carousel.php
2098 bytes
0644
vc-line-chart.php
1016 bytes
0644
vc-masonry-grid.php
1957 bytes
0644
vc-masonry-media-grid.php
1886 bytes
0644
vc-media-grid.php
4222 bytes
0644
vc-message.php
1027 bytes
0644
vc-pie.php
1715 bytes
0644
vc-pinterest.php
1448 bytes
0644
vc-posts-slider.php
316 bytes
0644
vc-pricing-table.php
5657 bytes
0644
vc-progress-bar.php
1554 bytes
0644
vc-raw-html.php
1967 bytes
0644
vc-raw-js.php
1419 bytes
0644
vc-round-chart.php
1024 bytes
0644
vc-row-inner.php
568 bytes
0644
vc-row.php
10059 bytes
0644
vc-section.php
6468 bytes
0644
vc-separator.php
449 bytes
0644
vc-single-image.php
5347 bytes
0644
vc-tab.php
2492 bytes
0644
vc-tabs.php
4136 bytes
0644
vc-text-separator.php
943 bytes
0644
vc-toggle.php
1011 bytes
0644
vc-tour.php
659 bytes
0644
vc-tta-accordion.php
13434 bytes
0644
vc-tta-pageable.php
1465 bytes
0644
vc-tta-section.php
8749 bytes
0644
vc-tta-tabs.php
6042 bytes
0644
vc-tta-toggle-section.php
856 bytes
0644
vc-tta-toggle.php
6279 bytes
0644
vc-tta-tour.php
2277 bytes
0644
vc-tweetmeme.php
1233 bytes
0644
vc-twitter.php
297 bytes
0644
vc-video.php
289 bytes
0644
vc-widget-sidebar.php
325 bytes
0644
vc-zigzag.php
293 bytes
0644
wordpress-widgets.php
669 bytes
0644
N4ST4R_ID | Naxtarrr