HEX
Server: Apache
System: Linux vps-3158868-x.dattaweb.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: emerlux (1185)
PHP: 8.3.1
Disabled: system, shell, exec, system_exec, shell_exec, mysql_pconnect, passthru, popen, proc_open, proc_close, proc_nice, proc_terminate, proc_get_status, escapeshellarg, escapeshellcmd, eval
Upload Files
File: /home/emerlux/public_html/wp-content/plugins/porto-functionality/porto-woo.php
<?php
use Automattic\WooCommerce\Packages;

defined( 'ABSPATH' ) || exit;
/**
 * Remove woo gutenberg blocks.
 *
 * @since 2.7.0
 */
class Porto_Woo extends Packages {
	/**
	 * The Constructor
	 *
	 * @since 2.7.0
	 */
	public function __construct() {

		remove_action( 'plugins_loaded', array( 'Packages', 'on_init' ) );
        if ( ! is_admin() && get_option( 'porto_disable_woo_blocks', false ) ) {
    		unset( self::$packages['woocommerce-blocks'] ); // woocommerce block
            if ( function_exists( 'yit_maybe_plugin_fw_loader' ) ) {
                function yith_plugin_fw_is_gutenberg_enabled() {
                    return false;
                }
            }
        }
		if ( method_exists( 'Porto_Woo', 'load_packages' ) ) {
			self::load_packages();
		}
	}
}
new Porto_Woo();