| Server IP : 68.178.247.200 / Your IP : 216.73.217.108 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/cwd/wp-content/plugins/js_composer/include/templates/editors/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
// [shortcodes presets data]
if ( vc_user_access()->part( 'presets' )->can()->get() ) {
require_once vc_path_dir( 'AUTOLOAD_DIR', 'class-vc-settings-presets.php' );
$vc_all_presets = Vc_Settings_Preset::listAllPresets();
} else {
$vc_all_presets = array();
}
// [/shortcodes presets data]
?>
<script type="text/javascript">
var vc_all_presets = <?php echo json_encode( $vc_all_presets ) ?>
</script>
<?php
require_once vc_path_dir( 'EDITORS_DIR', 'navbar/class-vc-navbar.php' );
/** @var $post WP_Post */
$nav_bar = new Vc_Navbar( $post );
$nav_bar->render();
/** @var $editor Vc_Backend_Editor */
?>
<style>
#wpb_visual_composer {
display: none;
}
</style>
<div class="metabox-composer-content">
<div id="visual_composer_content" class="wpb_main_sortable main_wrapper"></div>
<?php require vc_path_dir( 'TEMPLATES_DIR', 'editors/partials/vc_welcome_block.tpl.php' ); ?>
</div>
<?php
$wpb_vc_status = apply_filters( 'wpb_vc_js_status_filter', vc_get_param( 'wpb_vc_js_status', get_post_meta( $post->ID, '_wpb_vc_js_status', true ) ) );
if ( '' === $wpb_vc_status || ! isset( $wpb_vc_status ) ) {
$wpb_vc_status = vc_user_access()
->part( 'backend_editor' )
->checkState( 'default' )
->get() ? 'true' : 'false';
}
?>
<input type="hidden" id="wpb_vc_js_status" name="wpb_vc_js_status" value="<?php echo esc_attr( $wpb_vc_status ); ?>"/>
<input type="hidden" id="wpb_vc_loading" name="wpb_vc_loading"
value="<?php esc_attr_e( 'Loading, please wait...', 'js_composer' ) ?>"/>
<input type="hidden" id="wpb_vc_loading_row" name="wpb_vc_loading_row"
value="<?php esc_attr_e( 'Crunching...', 'js_composer' ) ?>"/>
<input type="hidden" name="vc_post_custom_css" id="vc_post-custom-css"
value="<?php echo esc_attr( $editor->post_custom_css ); ?>" autocomplete="off"/>
<?php vc_include_template( 'editors/partials/access-manager-js.tpl.php' );