| Server IP : 69.39.225.240 / Your IP : 216.73.216.138 Web Server : Apache System : Linux bronze7.serverhost.net 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : reademotions ( 1074) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/reademotions/www/wp-content/plugins/bb-plugin/classes/ |
Upload File : |
<?php
/**
* Handles rendering layouts in an iframe preview.
*
* @since 2.0.6
*/
final class FLBuilderIframePreview {
/**
* Initialize on plugins loaded.
*
* @since 2.0.6
* @return void
*/
static public function init() {
add_action( 'plugins_loaded', __CLASS__ . '::hook' );
}
/**
* Setup hooks.
*
* @since 2.1
* @return void
*/
static public function hook() {
if ( ! FLBuilderModel::is_builder_draft_preview() ) {
return;
}
add_filter( 'show_admin_bar', '__return_false' );
add_filter( 'fl_builder_node_status', __CLASS__ . '::filter_node_status' );
}
/**
* Forces draft node status for layout previews.
*
* @since 2.0.6
* @param string $status
* @return string
*/
static public function filter_node_status( $status ) {
return 'draft';
}
}
FLBuilderIframePreview::init();