| Server IP : 62.60.133.156 / Your IP : 216.73.217.51 Web Server : LiteSpeed System : Linux linux24.centraldnserver.com 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64 User : mimradmin ( 1166) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, exec, popen, proc_open MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mimradmin/public_html/wp-content/themes/woodmart/inc/modules/floating-blocks/ |
Upload File : |
<?php
/**
* Floating Blocks Main Class.
*
* @package woodmart
*/
namespace XTS\Modules\Floating_Blocks;
use XTS\Singleton;
/**
* Floating Blocks Main Class.
*/
class Main extends Singleton {
/**
* Constructor.
*/
public function init() {
add_action( 'init', array( $this, 'include_files' ), 10 );
}
/**
* Include required admin files.
*/
public function include_files() {
$dir = WOODMART_THEMEROOT . '/inc/modules/floating-blocks/';
if ( woodmart_is_elementor_installed() ) {
require_once $dir . '/integrations/elementor/class-fb-doc.php';
require_once $dir . '/integrations/elementor/class-popup-doc.php';
}
// WPBakery.
if ( defined( 'WPB_VC_VERSION' ) && ! isset( $_GET['vcv-gutenberg-editor'] ) ) { // phpcs:ignore.
require_once $dir . '/integrations/wpb/class-fb.php';
require_once $dir . '/integrations/wpb/class-popup.php';
}
if ( woodmart_is_gutenberg_blocks_enabled() ) {
require_once $dir . '/integrations/gutenberg/class-popup.php';
require_once $dir . '/integrations/gutenberg/class-fb.php';
}
require_once $dir . '/class-import.php';
require_once $dir . '/class-manager.php';
require_once $dir . '/class-admin.php';
require_once $dir . '/class-frontend.php';
}
}
Main::get_instance();