HEX
Server: Apache/2.4.29 (Ubuntu)
System: Linux instance-1 5.4.0-1092-gcp #101~18.04.1-Ubuntu SMP Mon Oct 17 18:29:06 UTC 2022 x86_64
User: web202 (5061)
PHP: 8.1.14
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, exec, shell_exec, system, passthru, proc_open, proc_close, popen, parse_ini_file, show_source
Upload Files
File: /data0/www/clients/client33/web202/web/wp-content/plugins/woo-update-manager/woo-update-manager.php
<?php
/**
 * Plugin Name: WooCommerce.com Update Manager
 * Description: Receive updates and streamlined support included in your Woo.com subscriptions.
 * Author: Automattic
 * Author URI: https://woocommerce.com/
 * Text Domain: woo-update-manager
 * Domain Path: /languages
 * WC requires at least: 8.6
 * WC tested up to: 8.7.0
 * Woo: 18734003407318:e4367d0e8d424278fd7049e7d7b567a6
 * Requires at least: 6.0
 * Requires PHP: 7.3
 * Version: 1.0.3
 *
 * @package Woo\UpdateManager
 */

namespace Automattic\WooUpdateManager;

use Automattic\WooCommerce\Utilities\FeaturesUtil;

defined( 'ABSPATH' ) || exit;

require_once __DIR__ . '/includes/class-woo-subscription-data-updater.php';

/**
 * Clear WP update transients for plugins and themes.
 *
 * @return void
 */
function clear_update_transients() {
	delete_site_transient( 'update_plugins' );
	delete_site_transient( 'update_themes' );
}

/**
 * Register activation hook to clear update transients.
 */
register_activation_hook( __FILE__, __NAMESPACE__ . '\clear_update_transients' );

/**
 * Register de-activation hook to clear update transients.
 */
register_deactivation_hook( __FILE__, __NAMESPACE__ . '\clear_update_transients' );


/**
 * Declare compatibility for HPOS compatibility.
 */
function declare_wc_feature_compatibility() {
	if ( class_exists( FeaturesUtil::class ) ) {
		FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
		FeaturesUtil::declare_compatibility( 'cart_checkout_blocks', __FILE__, true );
	}
}

add_action( 'before_woocommerce_init', __NAMESPACE__ . '\declare_wc_feature_compatibility' );