| Server IP : 94.177.215.211 / Your IP : 216.73.216.172 Web Server : nginx/1.26.0 System : Linux mtncompany-wp 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : root ( 0) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source,eval MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/sites/morsiesorsi/wp-content/plugins/js_composer/include/classes/shortcodes/ |
Upload File : |
<?php
/**
* Class that handles specific [vc_tour] shortcode.
*/
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
require_once vc_path_dir( 'SHORTCODES_DIR', 'vc-tabs.php' );
/**
* Class WPBakeryShortCode_Vc_Tour
*/
class WPBakeryShortCode_Vc_Tour extends WPBakeryShortCode_Vc_Tabs {
/**
* Get name.
*
* @return mixed|string
*/
protected function getFileName() {
return 'vc_tabs';
}
/**
* Get html of individual tab.
*
* @return string
*/
public function getTabTemplate() {
return '<div class="wpb_template">' . do_shortcode( '[vc_tab title="' . esc_attr__( 'Slide', 'js_composer' ) . '" tab_id=""][/vc_tab]' ) . '</div>';
}
}