HEX
Server: LiteSpeed
System: Linux cpir1.prohostdns.com 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP Thu May 7 23:17:13 UTC 2026 x86_64
User: pelakir (2976)
PHP: 8.2.31
Disabled: exec, shell_exec, system, passthru, proc_open, proc_close, proc_terminate, proc_get_status, popen, pclose, pcntl_exec
Upload Files
File: //home/pelakir/www/wp-content/themes/woodmart/inc/modules/floating-blocks/class-main.php
<?php

namespace XTS\Modules\Floating_Blocks;

use XTS\Singleton;

class Main extends Singleton {
	/**
	 * Constructor.
	 */
	public function init() {
		define( 'XTS_FLOATING_BLOCKS_DIR', WOODMART_THEMEROOT . '/inc/modules/floating-blocks/' );
		add_action( 'init', array( $this, 'include_files' ), 10 );
	}

	/**
	 * Include required admin files.
	 */
	public function include_files() {
		if ( woodmart_is_elementor_installed() ) {
			require_once XTS_FLOATING_BLOCKS_DIR . '/integrations/elementor/class-fb-doc.php';
			require_once XTS_FLOATING_BLOCKS_DIR . '/integrations/elementor/class-popup-doc.php';
		}

		// WPBakery.
		if ( defined( 'WPB_VC_VERSION' ) && ! isset( $_GET['vcv-gutenberg-editor'] ) ) { // phpcs:ignore.
			require_once XTS_FLOATING_BLOCKS_DIR . '/integrations/wpb/class-fb.php';
			require_once XTS_FLOATING_BLOCKS_DIR . '/integrations/wpb/class-popup.php';
		}

		if ( woodmart_get_opt( 'gutenberg_blocks' ) ) {
			require_once XTS_FLOATING_BLOCKS_DIR . '/integrations/gutenberg/class-popup.php';
			require_once XTS_FLOATING_BLOCKS_DIR . '/integrations/gutenberg/class-fb.php';
		}

		require_once XTS_FLOATING_BLOCKS_DIR . '/class-import.php';
		require_once XTS_FLOATING_BLOCKS_DIR . '/class-manager.php';
		require_once XTS_FLOATING_BLOCKS_DIR . '/class-admin.php';
		require_once XTS_FLOATING_BLOCKS_DIR . '/class-frontend.php';
	}
}

Main::get_instance();