| Server IP : 146.59.209.152 / Your IP : 216.73.216.46 Web Server : Apache System : Linux webm005.cluster131.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : infrafs ( 43850) PHP Version : 8.2.29 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/infrafs/www/wp-content/plugins/eltd-core/shortcodes/accordions/ |
Upload File : |
<?php
namespace ElatedCore\CPT\Shortcodes\AccordionTab;
use ElatedCore\Lib;
class AccordionTab implements Lib\ShortcodeInterface {
private $base;
function __construct() {
$this->base = 'eltd_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__( 'Elated Accordion Tab', 'eltd-core' ),
"base" => $this->base,
"as_child" => array( 'only' => 'eltd_accordion' ),
'is_container' => true,
"category" => esc_html__( 'by ELATED', 'eltd-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', 'eltd-core' ),
'description' => esc_html__( 'Enter accordion section title', 'eltd-core' )
),
array(
'type' => 'dropdown',
'param_name' => 'title_tag',
'heading' => esc_html__( 'Title Tag', 'eltd-core' ),
'value' => array_flip( trackstore_elated_get_title_tag( true, array( 'p' => 'p' ) ) ),
)
)
)
);
}
}
public function render( $atts, $content = null ) {
$default_atts = array(
'title' => 'Section',
'title_tag' => 'h4'
);
$params = shortcode_atts( $default_atts, $atts );
$params['content'] = $content;
$params['title_tag'] = ! empty( $params['title_tag'] ) ? $params['title_tag'] : $default_atts['title_tag'];
$output = eltd_core_get_shortcode_module_template_part( 'templates/accordion-template', 'accordions', '', $params );
return $output;
}
}