| 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/deprecated/ |
Upload File : |
<?php
/**
* WPBakery Page Builder deprecated helpers functions.
*
* Functions of here are deprecated and will be removed in future releases.
*
* @deprecated
*/
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
if ( ! function_exists( 'add_shortcode_param' ) ) :
/**
* Helper function to register new shortcode attribute hook.
*
* @param string $name - attribute name.
* @param callable $form_field_callback - hook, will be called when settings form is shown and attribute added to shortcode param list.
* @param string $script_url - javascript file url which will be attached at the end of settings form.
*
* @return bool
* @deprecated due to without prefix name 4.4
* @since 4.2
*/
function add_shortcode_param( $name, $form_field_callback, $script_url = null ) {
_deprecated_function( 'add_shortcode_param', '4.4 (will be removed in 6.0)', 'vc_add_shortcode_param' );
return vc_add_shortcode_param( $name, $form_field_callback, $script_url );
}
endif;
if ( ! function_exists( 'get_row_css_class' ) ) :
/**
* Get row css class.
*
* @return mixed|string
* @since 4.2
* @deprecated 4.2
*/
function get_row_css_class() {
_deprecated_function( 'get_row_css_class', '4.2 (will be removed in 6.0)' );
$custom = vc_settings()->get( 'row_css_class' );
return ! empty( $custom ) ? $custom : 'vc_row-fluid';
}
endif;
if ( ! function_exists( 'vc_generate_dependencies_attributes' ) ) :
/**
* Generate dependencies attributes for shortcode.
*
* @return string
* @deprecated 5.2
*/
function vc_generate_dependencies_attributes() {
_deprecated_function( 'vc_generate_dependencies_attributes', '5.1', '' );
return '';
}
endif;
if ( ! function_exists( 'vcExtractDimensions' ) ) :
/**
* Extract width/height from string
*
* @param string $dimensions WxH.
* @return mixed array(width, height) or false.
* @since 4.7
*
* @deprecated since 5.8
*/
function vcExtractDimensions( $dimensions ) { // phpcs:ignore
_deprecated_function( 'vcExtractDimensions', '5.8', 'vc_extract_dimensions' );
return vc_extract_dimensions( $dimensions );
}
endif;
if ( ! function_exists( 'fieldAttachedImages' ) ) :
/**
* Get image by attachment id.
*
* @param array $images IDs or srcs of images.
* @return string
* @since 4.2
* @deprecated since 2019, 5.8
*/
function fieldAttachedImages( $images = array() ) { // phpcs:ignore
_deprecated_function( 'fieldAttachedImages', '5.8', 'vc_field_attached_images' );
return vc_field_attached_images( $images );
}
endif;
if ( ! function_exists( 'getVcShared' ) ) :
/**
* Get shared asset.
*
* @param string $asset
*
* @return array|string
* @deprecated
*/
function getVcShared( $asset = '' ) { // phpcs:ignore
_deprecated_function( 'getVcShared', '5.8', 'vc_get_shared' );
return vc_get_shared( $asset );
}
endif;
if ( ! function_exists( 'vc_wp_action' ) ) :
/**
* Return a action param for ajax
*
* @return bool
* @since 4.8
* @deprecated 6.1
*/
function vc_wp_action() {
_deprecated_function( 'vc_wp_action', '6.1', 'vc_request_param' );
return vc_request_param( 'action' );
}
endif;
if ( ! function_exists( 'set_vc_is_inline' ) ) :
/**
* Set inline mode.
*
* @param bool $value
*
* @depreacted 5.2
* @since 4.3
*/
function set_vc_is_inline( $value = true ) {
_deprecated_function( 'set_vc_is_inline', '5.2' );
global $vc_is_inline;
$vc_is_inline = $value;
}
endif;
if ( ! function_exists( 'vc_is_editor' ) ) :
/**
* Check is plugin editor;
*
* @depreacted since 4.8 ( use vc_is_frontend_editor ).
* @return bool
* @since 4.2
*/
function vc_is_editor() {
_deprecated_function( 'vc_is_editor', '4.8', 'vc_is_frontend_editor' );
return vc_is_frontend_editor();
}
endif;
if ( ! function_exists( 'vc_disable_automapper' ) ) :
/**
* Disable automapper.
*
* @depreacted 7.7 ( use modules settings )
* @param bool $disable
* @since 4.2
*/
function vc_disable_automapper( $disable = true ) {
_deprecated_function( __FUNCTION__, '7.7', 'Use plugin settings module tab to disable automapper' );
vc_automapper()->setDisabled( $disable );
}
endif;
if ( ! function_exists( 'vc_automapper_is_disabled' ) ) :
/**
* Check is automapper disabled.
*
* @depreacted 7.7 ( use modules settings )
* @return bool
* @since 4.2
*/
function vc_automapper_is_disabled() {
_deprecated_function( __FUNCTION__, '7.7', 'Use plugin settings module tab to disable automapper' );
return vc_automapper()->disabled();
}
endif;
if ( ! function_exists( 'visual_composer' ) ) :
/**
* Alias for wpbakery.
*
* @return Vc_Base
* @since 4.2
* @depreacted 5.8, use wpbakery() instead
*/
function visual_composer() {
_deprecated_function( __FUNCTION__, '5.8', 'wpbakery' );
return wpbakery();
}
endif;
if ( ! function_exists( 'js_composer_body_class' ) ) :
/**
* Method adds css class to body tag.
*
* Hooked class method by body_class WP filter. Method adds custom css class to body tag of the page to help
* identify and build design specially for VC shortcodes.
* Used in wp-content/plugins/js_composer/include/classes/core/class-vc-base.php\Vc_Base\bodyClass.
*
* @param array $classes
*
* @return array
* @since 4.2
* @deprecated 8.5
*/
function js_composer_body_class( $classes ) {
_deprecated_function( __FUNCTION__, '8.5', 'wpb_body_class' );
return wpb_body_class( $classes );
}
endif;
if ( ! function_exists( 'vc_set_default_content_for_post_type' ) ) {
/**
* Set default content by post type in editor.
*
* Data for post type templates stored in settings.
*
* @param string|null $post_content
* @param WP_Post $post
* @return string|null
* @throws Exception
* @deprecated 8.5
* @since 4.12
*/
function vc_set_default_content_for_post_type( $post_content, $post ) {
_deprecated_function( __FUNCTION__, '8.5', 'vc_set_default_content_for_post_type_back_editor' );
return vc_set_default_content_for_post_type_back_editor( $post_content, $post );
}
}