Submit
Path:
~
/
home
/
getwphos
/
public_html
/
brueggemann
/
wp-content
/
plugins
/
js_composer
/
include
/
classes
/
shortcodes
/
File Content:
vc-tta-section.php
<?php /** * Class that handles specific [vc_tta_section] shortcode. * * @see js_composer/include/templates/shortcodes/vc_tta_section.php */ if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } VcShortcodeAutoloader::getInstance()->includeClass( 'WPBakeryShortCode_Vc_Tta_Accordion' ); /** * Class WPBakeryShortCode_Vc_Tta_Section */ class WPBakeryShortCode_Vc_Tta_Section extends WPBakeryShortCode_Vc_Tta_Accordion { /** * CSS settings for controls. * * @var string */ protected $controls_css_settings = 'tc vc_control-container'; /** * List of controls for the section. * * @var array */ protected $controls_list = [ 'add', 'edit', 'clone', 'copy', 'paste', 'delete', ]; /** * Determines whether to prepend controls in the backend editor. * * @var bool */ protected $backened_editor_prepend_controls = false; /** * Base shortcode for TTA. * * @var WPBakeryShortCode_Vc_Tta_Accordion */ public static $tta_base_shortcode; /** * Count of self-instances. * * @var int */ public static $self_count = 0; /** * Information about sections. * * @var array */ public static $section_info = []; /** * Get name. * * @return mixed|string */ public function getFileName() { if ( isset( self::$tta_base_shortcode ) && 'vc_tta_pageable' === self::$tta_base_shortcode->getShortcode() ) { return 'vc_tta_pageable_section'; } else { return 'vc_tta_section'; } } /** * Add container class. * * @return string */ public function containerContentClass() { return 'wpb_column_container vc_container_for_children vc_clearfix'; } /** * Get element classes. * * @return string */ public function getElementClasses() { $classes = []; $classes[] = 'vc_tta-panel'; $isActive = ! vc_is_page_editable() && $this->getTemplateVariable( 'section-is-active' ); if ( $isActive ) { $classes[] = $this->activeClass; } // since 4.6.2. if ( isset( $this->atts['el_class'] ) ) { $classes[] = $this->atts['el_class']; } return implode( ' ', array_filter( $classes ) ); } /** * Retrieve content with shortcodes. * * @param array $atts * @param string $content * * @return string */ public function getParamContent( $atts, $content ) { return wpb_js_remove_wpautop( $content ); } /** * Get tabs id. * * @param array $atts * @param string $content * * @return string|null */ public function getParamTabId( $atts, $content ) { if ( isset( $atts['tab_id'] ) && strlen( $atts['tab_id'] ) > 0 ) { return $atts['tab_id']; } return null; } /** * Get title. * * @param array $atts * @param string $content * * @return string|null */ public function getParamTitle( $atts, $content ) { if ( isset( $atts['title'] ) && strlen( $atts['title'] ) > 0 ) { return $atts['title']; } return null; } /** * Get icon. * * @param array $atts * @param string $content * * @return string|null */ public function getParamIcon( $atts, $content ) { if ( ! empty( $atts['add_icon'] ) && 'true' === $atts['add_icon'] ) { $iconClass = ''; if ( isset( $atts[ 'i_icon_' . $atts['i_type'] ] ) ) { $iconClass = $atts[ 'i_icon_' . $atts['i_type'] ]; } vc_icon_element_fonts_enqueue( $atts['i_type'] ); return '<i class="vc_tta-icon ' . esc_attr( $iconClass ) . '"></i>'; } return null; } /** * Get icon with left potions. * * @param array $atts * @param string $content * * @return string|null */ public function getParamIconLeft( $atts, $content ) { if ( 'left' === $atts['i_position'] ) { return $this->getParamIcon( $atts, $content ); } return null; } /** * Get icon with right potions. * * @param array $atts * @param string $content * * @return string|null */ public function getParamIconRight( $atts, $content ) { if ( 'right' === $atts['i_position'] ) { return $this->getParamIcon( $atts, $content ); } return null; } /** * Check section param active. * * @param array $atts * @param string $content * @return bool|null */ public function getParamSectionIsActive( $atts, $content ) { if ( is_object( self::$tta_base_shortcode ) ) { if ( isset( self::$tta_base_shortcode->atts['active_section'] ) && strlen( self::$tta_base_shortcode->atts['active_section'] ) > 0 ) { $active = (int) self::$tta_base_shortcode->atts['active_section']; if ( $active === self::$self_count ) { return true; } } } return null; } /** * Get control icon position. * * @param array $atts * @param string $content * @return string|null */ public function getParamControlIconPosition( $atts, $content ) { if ( is_object( self::$tta_base_shortcode ) ) { if ( isset( self::$tta_base_shortcode->atts['c_icon'] ) && strlen( self::$tta_base_shortcode->atts['c_icon'] ) > 0 && isset( self::$tta_base_shortcode->atts['c_position'] ) && strlen( self::$tta_base_shortcode->atts['c_position'] ) > 0 ) { $c_position = self::$tta_base_shortcode->atts['c_position']; if ( 'default' === $c_position ) { $c_position = is_rtl() ? 'right' : 'left'; } return 'vc_tta-controls-icon-position-' . $c_position; } } return null; } /** * Get control icon. * * @param array $atts * @param string $content * @return string|null */ public function getParamControlIcon( $atts, $content ) { if ( is_object( self::$tta_base_shortcode ) ) { if ( isset( self::$tta_base_shortcode->atts['c_icon'] ) && strlen( self::$tta_base_shortcode->atts['c_icon'] ) > 0 ) { $c_icon = self::$tta_base_shortcode->atts['c_icon']; return '<i class="vc_tta-controls-icon vc_tta-controls-icon-' . $c_icon . '"></i>'; } } return null; } /** * Get heading. * * @param array $atts * @param string $content * @return string */ public function getParamHeading( $atts, $content ) { $isPageEditable = vc_is_page_editable(); $headingAttributes = []; $headingClasses = [ 'vc_tta-panel-title', ]; if ( $isPageEditable ) { $headingAttributes[] = 'data-vc-tta-controls-icon-position=""'; } else { $controlIconPosition = $this->getTemplateVariable( 'control-icon-position' ); if ( $controlIconPosition ) { $headingClasses[] = $controlIconPosition; } } $headingAttributes[] = 'class="' . implode( ' ', $headingClasses ) . '"'; $headingTag = apply_filters( 'vc_tta_section_param_heading_tag', 'h4', $atts ); if ( ! empty( self::$tta_base_shortcode->atts['section_title_tag'] ) ) { $headingTag = self::$tta_base_shortcode->atts['section_title_tag']; } $output = '<' . $headingTag . ' ' . implode( ' ', $headingAttributes ) . '>'; if ( $isPageEditable ) { $output .= '<a href="javascript:;" data-vc-target=""'; $output .= ' data-vc-tta-controls-icon-wrapper'; $output .= ' data-vc-use-cache="false"'; } else { $output .= '<a href="#' . esc_attr( $this->getTemplateVariable( 'tab_id' ) ) . '"'; } $output .= ' data-vc-accordion'; $output .= ' data-vc-container=".vc_tta-container">'; $output .= empty( $atts['i_position'] ) ? '' : $this->getTemplateVariable( 'icon-left' ); $output .= '<span class="vc_tta-title-text">' . wp_kses_post( $this->getTemplateVariable( 'title' ) ) . '</span>'; $output .= empty( $atts['i_position'] ) ? '' : $this->getTemplateVariable( 'icon-right' ); if ( ! $isPageEditable ) { $output .= $this->getTemplateVariable( 'control-icon' ); } $output .= '</a>'; $output .= '</' . $headingTag . '>'; // close heading tag. return $output; } /** * Get basic heading. * * These are used in Pageable element inside content and are hidden from view. * * @param array $atts * @param string $content * * @return string */ public function getParamBasicHeading( $atts, $content ) { $isPageEditable = vc_is_page_editable(); if ( $isPageEditable ) { $attributes = [ 'href' => 'javascript:;', 'data-vc-container' => '.vc_tta-container', 'data-vc-accordion' => '', 'data-vc-target' => '', 'data-vc-tta-controls-icon-wrapper' => '', 'data-vc-use-cache' => 'false', ]; } else { $attributes = [ 'data-vc-container' => '.vc_tta-container', 'data-vc-accordion' => '', 'data-vc-target' => esc_attr( '#' . $this->getTemplateVariable( 'tab_id' ) ), ]; } $output = ' <span class="vc_tta-panel-title"> <a ' . vc_convert_atts_to_string( $attributes ) . '></a> </span> '; return $output; } /** * Check is allowed to add another element inside current element. * * @return bool * @since 4.8 */ public function getAddAllowed() { return vc_user_access()->part( 'shortcodes' )->checkStateAny( true, 'custom', null )->get(); } }
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