| 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/INFRABIKEDE/wp-content/plugins/eltd-core/shortcodes/tabs/ |
Upload File : |
<?php
namespace ElatedCore\CPT\Shortcodes\Tabs;
use ElatedCore\Lib;
class TabsItem implements Lib\ShortcodeInterface {
private $base;
function __construct() {
$this->base = 'eltd_tabs_item';
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 Tabs Item', 'eltd-core' ),
'base' => $this->getBase(),
'as_parent' => array( 'except' => 'vc_row' ),
'as_child' => array( 'only' => 'eltd_tabs' ),
'category' => esc_html__( 'by ELATED', 'eltd-core' ),
'icon' => 'icon-wpb-tabs-item extended-custom-icon',
'content_element' => true,
'js_view' => 'VcColumnView',
'params' => array(
array(
'type' => 'textfield',
'param_name' => 'tab_title',
'heading' => esc_html__( 'Title', 'eltd-core' )
)
)
)
);
}
}
public function render( $atts, $content = null ) {
$default_atts = array(
'tab_title' => 'Tab',
'tab_id' => ''
);
$params = shortcode_atts( $default_atts, $atts );
$rand_number = rand( 0, 1000 );
$params['tab_title'] = $params['tab_title'] . '-' . $rand_number;
$params['content'] = $content;
$output = eltd_core_get_shortcode_module_template_part( 'templates/tab-content', 'tabs', '', $params );
return $output;
}
}