OwlCyberSecurity - MANAGER
Edit File: accordion-tab.php
<?php namespace MuseaCore\CPT\Shortcodes\AccordionTab; use MuseaCore\Lib; class AccordionTab implements Lib\ShortcodeInterface { private $base; function __construct() { $this->base = 'eltdf_accordion_tab'; add_action( 'vc_before_init', array( $this, 'vcMap' ) ); } public function getBase() { return $this->base; } public function vcMap() { if ( function_exists( 'vc_map' ) ) { vc_map( array( "name" => esc_html__( 'Accordion Tab', 'musea-core' ), "base" => $this->base, "as_child" => array( 'only' => 'eltdf_accordion' ), 'is_container' => true, "category" => esc_html__( 'by MUSEA', 'musea-core' ), "icon" => "icon-wpb-accordion-tab extended-custom-icon", "show_settings_on_create" => true, "js_view" => 'VcColumnView', "params" => array( array( 'type' => 'textfield', 'param_name' => 'title', 'heading' => esc_html__( 'Title', 'musea-core' ), 'description' => esc_html__( 'Enter accordion section title', 'musea-core' ) ), array( 'type' => 'dropdown', 'param_name' => 'title_tag', 'heading' => esc_html__( 'Title Tag', 'musea-core' ), 'value' => array_flip( musea_elated_get_title_tag( true, array( 'p' => 'p' ) ) ), ) ) ) ); } } public function render( $atts, $content = null ) { $default_atts = array( 'title' => 'Section', 'title_tag' => 'h5' ); $params = shortcode_atts( $default_atts, $atts ); $params['content'] = $content; $params['title_tag'] = ! empty( $params['title_tag'] ) ? $params['title_tag'] : $default_atts['title_tag']; $output = musea_core_get_shortcode_module_template_part( 'templates/accordion-template', 'accordions', '', $params ); return $output; } }