Domain: antoinekatan.com
Server Adress: 10.127.20.23
privdayz.com
<?php
namespace QuartCore\CPT\Shortcodes\AccordionTab;
use QuartCore\Lib;
class AccordionTab implements Lib\ShortcodeInterface {
private $base;
function __construct() {
$this->base = 'mkdf_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', 'quart-core' ),
"base" => $this->base,
"as_child" => array( 'only' => 'mkdf_accordion' ),
'is_container' => true,
"category" => esc_html__( 'by QUART', 'quart-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', 'quart-core' ),
'description' => esc_html__( 'Enter accordion section title', 'quart-core' )
),
array(
'type' => 'dropdown',
'param_name' => 'title_tag',
'heading' => esc_html__( 'Title Tag', 'quart-core' ),
'value' => array_flip( quart_mikado_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 = quart_core_get_shortcode_module_template_part( 'templates/accordion-template', 'accordions', '', $params );
return $output;
}
}
