File: //proc/self/cwd/wp-content/plugins/extensive-vc-addon/shortcodes/tabs/tabs-item.php
<?php
namespace ExtensiveVC\Shortcodes\EVCTabs;
use ExtensiveVC\Shortcodes;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
if ( ! class_exists( 'EVCTabsItem' ) ) {
class EVCTabsItem extends Shortcodes\EVCShortcode {
/**
* Singleton variables
*/
private static $instance;
/**
* Constructor
*/
function __construct() {
$this->setBase( 'evc_tabs_item' );
$this->setParentBase( 'evc_tabs' );
$this->setShortcodeName( esc_html__( 'Tabs Item', 'extensive-vc' ) );
$this->setShortcodeParameters( $this->shortcodeParameters() );
// Parent constructor need to be loaded after setter's method initialization
parent::__construct( array( 'hasParent' => true, 'isNested' => true ) );
}
/**
* Get the instance of ExtensiveVCFramework
*
* @return self
*/
public static function getInstance() {
if ( is_null( self::$instance ) ) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Set shortcode parameters for WPBakery Page Builder shortcodes options panel
*/
function shortcodeParameters() {
$params = array(
array(
'type' => 'textfield',
'param_name' => 'custom_class',
'heading' => esc_html__( 'Custom CSS Class', 'extensive-vc' ),
'description' => esc_html__( 'Style particular content element differently - add a class name and refer to it in custom CSS', 'extensive-vc' )
),
array(
'type' => 'textfield',
'param_name' => 'tab_title',
'heading' => esc_html__( 'Title', 'extensive-vc' )
)
);
return $params;
}
/**
* Renders shortcodes HTML
*
* @param $atts array - shortcode params
* @param $content string - shortcode content
*
* @return html
*/
function render( $atts, $content = null ) {
$args = array(
'custom_class' => '',
'tab_title' => esc_html__( 'Tab Title', 'extensive-vc' )
);
$params = shortcode_atts( $args, $atts, $this->getBase() );
$rand_number = rand( 0, 2000 );
$params['holder_classes'] = $this->getHolderClasses( $params );
$params['tab_title'] = $params['tab_title'] . '-' . $rand_number;
$params['content'] = $content;
$html = extensive_vc_get_module_template_part( 'shortcodes', 'tabs', 'templates/tabs-item', '', $params );
return $html;
}
/**
* Get shortcode holder classes
*
* @param $params array - shortcode parameters value
*
* @return string
*/
private function getHolderClasses( $params ) {
$holderClasses = array();
$holderClasses[] = ! empty( $params['custom_class'] ) ? esc_attr( $params['custom_class'] ) : '';
return implode( ' ', $holderClasses );
}
}
}
EVCTabsItem::getInstance();