PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
plugins
/
webon-core
/
inc
/
shortcodes
/
accordion
<?php if ( ! function_exists( 'webon_core_add_accordion_shortcode' ) ) { /** * Function that add shortcode into shortcodes list for registration * * @param array $shortcodes * * @return array */ function webon_core_add_accordion_shortcode( $shortcodes ) { $shortcodes[] = 'WebOnCoreAccordionShortcode'; return $shortcodes; } add_filter( 'webon_core_filter_register_shortcodes', 'webon_core_add_accordion_shortcode' ); } if ( class_exists( 'WebOnCoreShortcode' ) ) { class WebOnCoreAccordionShortcode extends WebOnCoreShortcode { public function __construct() { $this->set_layouts( apply_filters( 'webon_core_filter_accordion_layouts', array() ) ); parent::__construct(); } public function map_shortcode() { $this->set_shortcode_path( WEBON_CORE_SHORTCODES_URL_PATH . '/accordion' ); $this->set_base( 'webon_core_accordion' ); $this->set_name( esc_html__( 'Accordion', 'webon-core' ) ); $this->set_description( esc_html__( 'Shortcode that adds accordion holder', 'webon-core' ) ); $this->set_category( esc_html__( 'WebOn Core', 'webon-core' ) ); $this->set_is_parent_shortcode( true ); $this->set_child_elements( array( 'webon_core_accordion_child' ) ); $this->set_scripts( array( 'jquery-ui-accordion' => array( 'registered' => true ) ) ); $options_map = webon_core_get_variations_options_map( $this->get_layouts() ); $this->set_option( array( 'field_type' => 'select', 'name' => 'layout', 'title' => esc_html__( 'Layout', 'webon-core' ), 'options' => $this->get_layouts(), 'default_value' => $options_map['default_value'], 'visibility' => array( 'map_for_page_builder' => $options_map['visibility'] ) ) ); $this->set_option( array( 'field_type' => 'text', 'name' => 'custom_class', 'title' => esc_html__( 'Custom Class', 'webon-core' ), ) ); $this->set_option( array( 'field_type' => 'select', 'name' => 'behavior', 'title' => esc_html__( 'Behavior', 'webon-core' ), 'options' => array( 'accordion' => esc_html__( 'Accordion', 'webon-core' ), 'toggle' => esc_html__( 'Toggle', 'webon-core' ) ), 'default_value' => 'accordion' ) ); } public static function call_shortcode( $params ) { $content = null; if ( isset( $params['accordion_titles'] ) && ! empty( $params['accordion_titles'] ) && isset( $params['accordion_contents'] ) && ! empty( $params['accordion_contents'] ) ) { $title_tag = isset( $params['accordion_title_tag'] ) && ! empty( $params['accordion_title_tag'] ) ? esc_attr( $params['accordion_title_tag'] ) : ''; foreach ( $params['accordion_titles'] as $index => $title ) { $content .= '[webon_core_accordion_child title_tag="' . esc_attr( $title_tag ) . '" title="' . esc_attr( $title ) . '"]' . $params['accordion_contents'][ $index ] . '[/webon_core_accordion_child]'; } } $html = qode_framework_call_shortcode( 'webon_core_accordion', $params, $content ); return $html; } public function load_assets() { wp_enqueue_script( 'jquery-ui-accordion' ); } public function render( $options, $content = null ) { parent::render( $options ); $atts = $this->get_atts(); $atts['holder_classes'] = $this->get_holder_classes( $atts ); $atts['content'] = preg_replace('/\[webon_core_accordion_child/i', '[webon_core_accordion_child layout="'.$atts['layout'].'"', $content); return webon_core_get_template_part( 'shortcodes/accordion', 'variations/'.$atts['layout'].'/templates/holder', '', $atts ); } private function get_holder_classes( $atts ) { $holder_classes = $this->init_holder_classes(); $holder_classes[] = 'qodef-accordion'; $holder_classes[] = 'clear'; $holder_classes[] = ! empty( $atts['behavior'] ) ? 'qodef-behavior--' . $atts['behavior'] : ''; $holder_classes[] = ! empty( $atts['layout'] ) ? 'qodef-layout--' . $atts['layout'] : ''; return implode( ' ', $holder_classes ); } } }
[+]
..
[+]
variations
[-] accordion.php
[edit]
[-] accordion-child.php
[edit]
[-] include.php
[edit]
[+]
assets
[-] accordion-elementor.php
[edit]