| Server IP : 38.190.208.107 / Your IP : 216.73.217.46 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.3/wp-content/plugins/js_composer/include/classes/shortcodes/ |
Upload File : |
<?php
/**
* Class that handles specific [vc_tab] shortcode.
*
* @see js_composer/include/templates/shortcodes/vc_tab.php
*/
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
define( 'TAB_TITLE', esc_attr__( 'Tab', 'js_composer' ) );
require_once vc_path_dir( 'SHORTCODES_DIR', 'vc-column.php' );
/**
* Class WPBakeryShortCode_Vc_Tab
*/
class WPBakeryShortCode_Vc_Tab extends WPBakeryShortCode_Vc_Column {
/**
* Controls container css classes.
*
* @var string
*/
protected $controls_css_settings = 'tc vc_control-container';
/**
* Controls list.
*
* @var array
*/
protected $controls_list = [
'add',
'edit',
'clone',
'copy',
'delete',
];
/**
* Controls template file.
*
* @var string
*/
protected $controls_template_file = 'editors/partials/backend_controls_tab.tpl.php';
/**
* Set custom admin block params.
*
* @return string
*/
public function customAdminBlockParams() {
return ' id="tab-' . $this->atts['tab_id'] . '"';
}
/**
* Add main html block attributes.
*
* @param string $width
* @param int $i
* @return string
* @throws \Exception
*/
public function mainHtmlBlockParams( $width, $i ) {
$sortable = ( vc_user_access_check_shortcode_all( $this->shortcode ) ? 'wpb_sortable' : $this->nonDraggableClass );
return 'data-element_type="' . $this->settings['base'] . '" class="wpb_' . $this->settings['base'] . ' ' . $sortable . ' wpb_content_holder"' . $this->customAdminBlockParams();
}
/**
* Add container classes.
*
* @param string $width
* @param int $i
* @return string
*/
public function containerHtmlBlockParams( $width, $i ) {
return 'class="wpb_column_container vc_container_for_children"';
}
/**
* Get column controls.
*
* @param string $controls
* @param string $extended_css
* @return string
* @throws \Exception
*/
public function getColumnControls( $controls, $extended_css = '' ) {
return $this->getColumnControlsModular( $extended_css );
}
}
/**
* Add tab settings filed.
*
* @param array $settings
* @param string $value
*
* @return string
* @since 4.4
*/
function vc_tab_id_settings_field( $settings, $value ) {
return sprintf( '<div class="vc_tab_id_block"><input name="%s" class="wpb_vc_param_value wpb-textinput %s %s_field" type="hidden" value="%s" /><label>%s</label></div>', $settings['param_name'], $settings['param_name'], $settings['type'], $value, $value );
}
vc_add_shortcode_param( 'tab_id', 'vc_tab_id_settings_field' );