143 lines
4.3 KiB
PHP
143 lines
4.3 KiB
PHP
<?php
|
|
/**
|
|
* Plugin Name: WooCommerce Beta Tester
|
|
* Plugin URI: https://github.com/woocommerce/woocommerce-beta-tester
|
|
* Description: Run bleeding edge versions of WooCommerce. This will replace your installed version of WooCommerce with the latest tagged release - use with caution, and not on production sites.
|
|
* Version: 2.3.2
|
|
* Author: WooCommerce
|
|
* Author URI: https://woocommerce.com/
|
|
* Requires at least: 5.8
|
|
* Tested up to: 6.0
|
|
* WC requires at least: 6.7
|
|
* WC tested up to: 7.0
|
|
* Text Domain: woocommerce-beta-tester
|
|
* Woo: 18734002351694:04192c15b62a4ce6f5fa69df608aa3aa
|
|
*
|
|
* @package WC_Beta_Tester
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
|
|
if ( defined( 'WP_CLI' ) ) {
|
|
require_once dirname( __FILE__ ) . '/includes/class-wc-beta-tester-cli.php';
|
|
WP_CLI::add_command( 'wc-beta-tester', WC_Beta_Tester_CLI::class );
|
|
}
|
|
|
|
// Define WC_BETA_TESTER_FILE.
|
|
if ( ! defined( 'WC_BETA_TESTER_FILE' ) ) {
|
|
define( 'WC_BETA_TESTER_FILE', __FILE__ );
|
|
}
|
|
|
|
if ( ! defined( 'WC_BETA_TESTER_VERSION' ) ) {
|
|
define( 'WC_BETA_TESTER_VERSION', '2.3.2' ); // WRCS: DEFINED_VERSION.
|
|
}
|
|
|
|
/**
|
|
* Load text domain before all other code.
|
|
*
|
|
* @since 2.0.0
|
|
*/
|
|
function _wc_beta_tester_load_textdomain() {
|
|
load_plugin_textdomain( 'woocommerce-beta-tester', false, basename( dirname( __FILE__ ) ) . '/languages' );
|
|
}
|
|
|
|
add_action( 'plugins_loaded', '_wc_beta_tester_load_textdomain' );
|
|
|
|
/**
|
|
* Bootstrap plugin.
|
|
*/
|
|
function _wc_beta_tester_bootstrap() {
|
|
|
|
// Check if WooCommerce is enabled.
|
|
if ( ! class_exists( 'WooCommerce' ) ) {
|
|
include dirname( __FILE__ ) . '/includes/class-wc-beta-tester-admin-notices.php';
|
|
$notices = new WC_Beta_Tester_Admin_Notices();
|
|
|
|
add_action( 'admin_notices', array( $notices, 'woocoommerce_not_installed' ) );
|
|
} elseif ( ! class_exists( 'WC_Beta_Tester' ) ) {
|
|
include dirname( __FILE__ ) . '/includes/class-wc-beta-tester.php';
|
|
// Settings.
|
|
include dirname( __FILE__ ) . '/includes/class-wc-beta-tester-channel.php';
|
|
include dirname( __FILE__ ) . '/includes/class-wc-beta-tester-import-export.php';
|
|
new WC_Beta_Tester_Import_Export();
|
|
// Tools.
|
|
include dirname( __FILE__ ) . '/includes/class-wc-beta-tester-version-picker.php';
|
|
include dirname( __FILE__ ) . '/includes/class-wc-beta-tester-override-coming-soon-options.php';
|
|
|
|
register_activation_hook( __FILE__, array( 'WC_Beta_Tester', 'activate' ) );
|
|
|
|
add_action( 'admin_init', array( 'WC_Beta_Tester', 'instance' ) );
|
|
}
|
|
|
|
// Load admin.
|
|
require 'plugin.php';
|
|
}
|
|
|
|
add_action( 'plugins_loaded', '_wc_beta_tester_bootstrap' );
|
|
|
|
/**
|
|
* Register the JS.
|
|
*/
|
|
function add_extension_register_script() {
|
|
if ( ! defined( 'WC_ADMIN_APP' ) ) {
|
|
return;
|
|
}
|
|
$script_path = '/build/index.js';
|
|
$script_asset_path = dirname( __FILE__ ) . '/build/index.asset.php';
|
|
$script_asset = file_exists( $script_asset_path )
|
|
? require $script_asset_path
|
|
: array(
|
|
'dependencies' => array(),
|
|
'version' => filemtime( $script_path ),
|
|
);
|
|
$script_url = plugins_url( $script_path, __FILE__ );
|
|
|
|
$script_asset['dependencies'][] = WC_ADMIN_APP; // Add WCA as a dependency to ensure it loads first.
|
|
|
|
wp_register_script(
|
|
'woocommerce-admin-test-helper',
|
|
$script_url,
|
|
$script_asset['dependencies'],
|
|
$script_asset['version'],
|
|
true
|
|
);
|
|
wp_enqueue_script( 'woocommerce-admin-test-helper' );
|
|
|
|
$css_file_version = filemtime( dirname( __FILE__ ) . '/build/index.css' );
|
|
|
|
wp_register_style(
|
|
'wp-components',
|
|
plugins_url( 'dist/components/style.css', __FILE__ ),
|
|
array(),
|
|
$css_file_version
|
|
);
|
|
|
|
wp_register_style(
|
|
'woocommerce-admin-test-helper',
|
|
plugins_url( '/build/index.css', __FILE__ ),
|
|
// Add any dependencies styles may have, such as wp-components.
|
|
array(
|
|
'wp-components',
|
|
),
|
|
$css_file_version
|
|
);
|
|
|
|
wp_enqueue_style( 'woocommerce-admin-test-helper' );
|
|
}
|
|
|
|
add_action( 'admin_enqueue_scripts', 'add_extension_register_script' );
|
|
|
|
add_action(
|
|
'before_woocommerce_init',
|
|
function() {
|
|
if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) {
|
|
\Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
|
|
\Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'product_block_editor', __FILE__, true );
|
|
}
|
|
}
|
|
);
|
|
|
|
// Initialize the live branches feature.
|
|
require_once dirname( __FILE__ ) . '/includes/class-wc-beta-tester-live-branches.php';
|