2018-04-17 21:03:14 +00:00
< ? php
/**
2018-07-10 12:48:06 +00:00
* Plugin Name : WooCommerce Admin
2019-03-13 17:14:02 +00:00
* Plugin URI : https :// github . com / woocommerce / woocommerce - admin
2019-03-08 16:20:42 +00:00
* Description : A new JavaScript - driven interface for managing your store . The plugin includes new and improved reports , and a dashboard to monitor all the important key metrics of your site .
* Author : WooCommerce
2018-04-17 23:51:48 +00:00
* Author URI : https :// woocommerce . com /
2019-03-13 17:14:02 +00:00
* Text Domain : woocommerce - admin
2018-04-17 23:51:48 +00:00
* Domain Path : / languages
2019-04-02 23:10:43 +00:00
* Version : 0.10 . 0
2018-04-17 21:03:14 +00:00
*
2019-04-01 16:16:13 +00:00
* WC requires at least : 3.5 . 0
* WC tested up to : 3.5 . 7
*
2018-07-10 12:48:06 +00:00
* @ package WC_Admin
2018-04-17 21:03:14 +00:00
*/
2018-07-10 12:48:06 +00:00
if ( ! defined ( 'WC_ADMIN_APP' ) ) {
define ( 'WC_ADMIN_APP' , 'wc-admin-app' );
2018-04-17 23:51:48 +00:00
}
2018-09-17 18:36:29 +00:00
if ( ! defined ( 'WC_ADMIN_ABSPATH' ) ) {
2019-04-11 18:31:31 +00:00
define ( 'WC_ADMIN_ABSPATH' , dirname ( __FILE__ ) . '/' );
}
if ( ! defined ( 'WC_ADMIN_DIST_JS_FOLDER' ) ) {
define ( 'WC_ADMIN_DIST_JS_FOLDER' , 'dist/' );
}
if ( ! defined ( 'WC_ADMIN_DIST_CSS_FOLDER' ) ) {
define ( 'WC_ADMIN_DIST_CSS_FOLDER' , 'dist/' );
}
if ( ! defined ( 'WC_ADMIN_FEATURES_PATH' ) ) {
define ( 'WC_ADMIN_FEATURES_PATH' , WC_ADMIN_ABSPATH . 'includes/features/' );
2018-09-17 18:36:29 +00:00
}
2018-09-21 10:14:08 +00:00
if ( ! defined ( 'WC_ADMIN_PLUGIN_FILE' ) ) {
define ( 'WC_ADMIN_PLUGIN_FILE' , __FILE__ );
}
2019-03-25 06:43:26 +00:00
if ( ! defined ( 'WC_ADMIN_VERSION_NUMBER' ) ) {
2019-04-02 23:10:43 +00:00
define ( 'WC_ADMIN_VERSION_NUMBER' , '0.10.0' );
2019-03-25 06:43:26 +00:00
}
2019-04-11 18:31:31 +00:00
/**
* Removes core hooks in favor of our local feature plugin handlers .
*
* @ see WC_Admin_Library :: __construct ()
*/
function wc_admin_initialize () {
remove_action ( 'init' , array ( 'WC_Admin_Library' , 'load_features' ) );
remove_action ( 'admin_enqueue_scripts' , array ( 'WC_Admin_Library' , 'register_scripts' ) );
remove_action ( 'admin_enqueue_scripts' , array ( 'WC_Admin_Library' , 'load_scripts' ), 15 );
remove_action ( 'woocommerce_components_settings' , array ( 'WC_Admin_Library' , 'add_component_settings' ) );
remove_filter ( 'admin_body_class' , array ( 'WC_Admin_Library' , 'add_admin_body_classes' ) );
remove_action ( 'admin_menu' , array ( 'WC_Admin_Library' , 'register_page_handler' ) );
remove_filter ( 'admin_title' , array ( 'WC_Admin_Library' , 'update_admin_title' ) );
remove_action ( 'rest_api_init' , array ( 'WC_Admin_Library' , 'register_user_data' ) );
remove_action ( 'in_admin_header' , array ( 'WC_Admin_Library' , 'embed_page_header' ) );
remove_filter ( 'woocommerce_settings_groups' , array ( 'WC_Admin_Library' , 'add_settings_group' ) );
remove_filter ( 'woocommerce_settings-wc_admin' , array ( 'WC_Admin_Library' , 'add_settings' ) );
remove_action ( 'admin_head' , array ( 'WC_Admin_Library' , 'update_link_structure' ), 20 );
require_once WC_ADMIN_ABSPATH . 'includes/class-wc-admin-loader.php' ;
}
add_action ( 'woocommerce_loaded' , 'wc_admin_initialize' );
2018-05-03 17:55:53 +00:00
/**
2019-02-12 20:22:16 +00:00
* Notify users of the plugin requirements .
2018-05-03 17:55:53 +00:00
*/
2018-07-10 12:48:06 +00:00
function wc_admin_plugins_notice () {
2018-11-07 19:53:05 +00:00
// The notice varies by WordPress version.
$wordpress_version = get_bloginfo ( 'version' );
$wordpress_includes_gutenberg = version_compare ( $wordpress_version , '4.9.9' , '>' );
if ( $wordpress_includes_gutenberg ) {
$message = sprintf (
/* translators: URL of WooCommerce plugin */
2019-03-13 17:14:02 +00:00
__ ( 'The WooCommerce Admin feature plugin requires <a href="%s">WooCommerce</a> 3.5 or greater to be installed and active.' , 'woocommerce-admin' ),
2018-11-07 19:53:05 +00:00
'https://wordpress.org/plugins/woocommerce/'
);
} else {
$message = sprintf (
2019-02-12 20:22:16 +00:00
/* translators: 1: URL of WordPress.org, 2: URL of WooCommerce plugin */
2019-03-13 17:14:02 +00:00
__ ( 'The WooCommerce Admin feature plugin requires both <a href="%1$s">WordPress</a> 5.0 or greater and <a href="%2$s">WooCommerce</a> 3.5 or greater to be installed and active.' , 'woocommerce-admin' ),
2019-02-12 20:22:16 +00:00
'https://wordpress.org/' ,
2018-11-07 19:53:05 +00:00
'https://wordpress.org/plugins/woocommerce/'
);
}
2018-05-03 17:55:53 +00:00
printf ( '<div class="error"><p>%s</p></div>' , $message ); /* WPCS: xss ok. */
}
2018-04-17 23:51:48 +00:00
2018-12-14 00:44:58 +00:00
/**
2019-02-12 20:22:16 +00:00
* Notify users that the plugin needs to be built .
2018-12-14 00:44:58 +00:00
*/
function wc_admin_build_notice () {
2019-03-13 17:14:02 +00:00
$message_one = __ ( 'You have installed a development version of WooCommerce Admin which requires files to be built. From the plugin directory, run <code>npm install</code> to install dependencies, <code>npm run build</code> to build the files.' , 'woocommerce-admin' );
2018-12-14 00:44:58 +00:00
$message_two = sprintf (
/* translators: 1: URL of GitHub Repository build page */
2019-03-13 17:14:02 +00:00
__ ( 'Or you can download a pre-built version of the plugin by visiting <a href="%1$s">the releases page in the repository</a>.' , 'woocommerce-admin' ),
'https://github.com/woocommerce/woocommerce-admin/releases'
2018-12-14 00:44:58 +00:00
);
printf ( '<div class="error"><p>%s %s</p></div>' , $message_one , $message_two ); /* WPCS: xss ok. */
}
2018-09-24 15:24:08 +00:00
/**
* Returns true if all dependencies for the wc - admin plugin are loaded .
*
* @ return bool
*/
2019-03-11 07:10:41 +00:00
function wc_admin_dependencies_satisfied () {
2018-11-07 17:53:20 +00:00
$woocommerce_minimum_met = class_exists ( 'WooCommerce' ) && version_compare ( WC_VERSION , '3.5' , '>' );
2018-11-05 02:14:26 +00:00
if ( ! $woocommerce_minimum_met ) {
return false ;
}
2019-02-12 20:22:16 +00:00
$wordpress_version = get_bloginfo ( 'version' );
return version_compare ( $wordpress_version , '4.9.9' , '>' );
2018-09-21 10:14:08 +00:00
}
2018-12-14 00:44:58 +00:00
/**
* Returns true if build file exists .
*
* @ return bool
*/
function wc_admin_build_file_exists () {
return file_exists ( plugin_dir_path ( __FILE__ ) . '/dist/app/index.js' );
}
2019-04-11 18:31:31 +00:00
/**
* Adds a menu item for the wc - admin devdocs .
*/
function wc_admin_devdocs () {
if ( WC_Admin_Loader :: is_feature_enabled ( 'devdocs' ) && defined ( 'WP_DEBUG' ) && WP_DEBUG && defined ( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) {
wc_admin_register_page (
array (
'title' => 'DevDocs' ,
'parent' => 'woocommerce' ,
'path' => '/devdocs' ,
)
);
}
}
add_action ( 'admin_menu' , 'wc_admin_devdocs' );
2018-10-18 23:41:43 +00:00
/**
* Daily events to run .
2019-03-21 17:27:39 +00:00
*
* Note : WC_Admin_Notes_Order_Milestones :: other_milestones is hooked to this as well .
2018-10-18 23:41:43 +00:00
*/
2019-03-11 07:10:41 +00:00
function wc_admin_do_wc_admin_daily () {
2018-10-18 23:41:43 +00:00
WC_Admin_Notes_New_Sales_Record :: possibly_add_sales_record_note ();
2019-04-16 08:11:34 +00:00
WC_Admin_Notes_Giving_Feedback_Notes :: add_notes_for_admin_giving_feedback ();
2019-04-10 15:49:02 +00:00
WC_Admin_Notes_Mobile_App :: possibly_add_mobile_app_note ();
2018-10-18 23:41:43 +00:00
}
2019-03-11 07:10:41 +00:00
add_action ( 'wc_admin_daily' , 'wc_admin_do_wc_admin_daily' );
2018-10-18 23:41:43 +00:00
2018-09-24 15:24:08 +00:00
/**
2019-02-08 19:27:39 +00:00
* Initializes wc - admin daily action when plugin activated .
2018-09-24 15:24:08 +00:00
*/
2019-03-11 07:10:41 +00:00
function wc_admin_activate_wc_admin_plugin () {
if ( ! wc_admin_dependencies_satisfied () ) {
2018-09-21 10:14:08 +00:00
return ;
}
2018-10-18 23:41:43 +00:00
if ( ! wp_next_scheduled ( 'wc_admin_daily' ) ) {
wp_schedule_event ( time (), 'daily' , 'wc_admin_daily' );
}
2018-09-21 10:14:08 +00:00
}
2019-03-11 07:10:41 +00:00
register_activation_hook ( WC_ADMIN_PLUGIN_FILE , 'wc_admin_activate_wc_admin_plugin' );
2018-09-21 10:14:08 +00:00
2018-10-18 18:37:49 +00:00
/**
* Deactivate wc - admin plugin if dependencies not satisfied .
*/
2019-03-11 07:10:41 +00:00
function wc_admin_possibly_deactivate_wc_admin_plugin () {
if ( ! wc_admin_dependencies_satisfied () ) {
2018-10-18 18:37:49 +00:00
deactivate_plugins ( plugin_basename ( WC_ADMIN_PLUGIN_FILE ) );
unset ( $_GET [ 'activate' ] );
}
}
2019-03-11 07:10:41 +00:00
add_action ( 'admin_init' , 'wc_admin_possibly_deactivate_wc_admin_plugin' );
2018-10-18 23:41:43 +00:00
/**
* On deactivating the wc - admin plugin .
*/
2019-03-11 07:10:41 +00:00
function wc_admin_deactivate_wc_admin_plugin () {
2019-03-15 01:26:29 +00:00
if ( wc_admin_dependencies_satisfied () ) {
wp_clear_scheduled_hook ( 'wc_admin_daily' );
WC_Admin_Reports_Sync :: clear_queued_actions ();
}
2018-10-18 23:41:43 +00:00
}
2019-03-11 07:10:41 +00:00
register_deactivation_hook ( WC_ADMIN_PLUGIN_FILE , 'wc_admin_deactivate_wc_admin_plugin' );
2018-10-18 18:37:49 +00:00
2018-05-03 17:55:53 +00:00
/**
* Set up the plugin , only if we can detect both Gutenberg and WooCommerce
*/
2018-07-10 12:48:06 +00:00
function wc_admin_plugins_loaded () {
2019-03-11 07:10:41 +00:00
if ( ! wc_admin_dependencies_satisfied () ) {
2018-07-10 12:48:06 +00:00
add_action ( 'admin_notices' , 'wc_admin_plugins_notice' );
2018-05-03 17:55:53 +00:00
return ;
}
2018-09-17 14:32:03 +00:00
// Initialize the WC API extensions.
2019-04-11 18:31:31 +00:00
require_once WC_ADMIN_ABSPATH . 'includes/class-wc-admin-reports-sync.php' ;
require_once WC_ADMIN_ABSPATH . 'includes/class-wc-admin-install.php' ;
require_once WC_ADMIN_ABSPATH . 'includes/class-wc-admin-api-init.php' ;
2018-04-17 23:51:48 +00:00
2019-04-16 08:11:34 +00:00
// Admin note providers.
2019-04-11 18:31:31 +00:00
// @todo These should be bundled in the features/ folder, but loading them from there currently has a load order issue.
require_once WC_ADMIN_ABSPATH . 'includes/notes/class-wc-admin-notes-new-sales-record.php' ;
require_once WC_ADMIN_ABSPATH . 'includes/notes/class-wc-admin-notes-settings-notes.php' ;
2019-04-16 08:11:34 +00:00
require_once WC_ADMIN_ABSPATH . 'includes/notes/class-wc-admin-notes-giving-feedback-notes.php' ;
2019-04-11 18:31:31 +00:00
require_once WC_ADMIN_ABSPATH . 'includes/notes/class-wc-admin-notes-woo-subscriptions-notes.php' ;
require_once WC_ADMIN_ABSPATH . 'includes/notes/class-wc-admin-notes-historical-data.php' ;
require_once WC_ADMIN_ABSPATH . 'includes/notes/class-wc-admin-notes-order-milestones.php' ;
require_once WC_ADMIN_ABSPATH . 'includes/notes/class-wc-admin-notes-mobile-app.php' ;
2019-04-15 07:34:27 +00:00
require_once WC_ADMIN_ABSPATH . 'includes/notes/class-wc-admin-notes-welcome-message.php' ;
2018-12-14 00:44:58 +00:00
// Verify we have a proper build.
if ( ! wc_admin_build_file_exists () ) {
add_action ( 'admin_notices' , 'wc_admin_build_notice' );
return ;
}
2018-05-03 17:55:53 +00:00
}
2018-07-10 12:48:06 +00:00
add_action ( 'plugins_loaded' , 'wc_admin_plugins_loaded' );
2018-10-23 17:30:33 +00:00
/**
2019-04-11 18:31:31 +00:00
* Overwrites the allowed features array using a local `feature-config.php` file .
*
* @ param array $features Array of feature slugs .
2018-10-23 17:30:33 +00:00
*/
2019-04-11 18:31:31 +00:00
function wc_admin_overwrite_features ( $features ) {
if ( ! function_exists ( 'wc_admin_get_feature_config' ) ) {
require_once WC_ADMIN_ABSPATH . '/includes/feature-config.php' ;
}
$feature_config = wc_admin_get_feature_config ();
$features = array_keys ( array_filter ( $feature_config ) );
return $features ;
2018-10-23 17:30:33 +00:00
}
2019-04-11 18:31:31 +00:00
add_filter ( 'woocommerce_admin_features' , 'wc_admin_overwrite_features' );
2019-01-22 02:18:55 +00:00
/*
* Remove the emoji script as it always defaults to replacing emojis with Twemoji images .
* Gutenberg has also disabled emojis . More on that here -> https :// github . com / WordPress / gutenberg / pull / 6151
*/
remove_action ( 'admin_print_scripts' , 'print_emoji_detection_script' );
2019-03-08 18:59:32 +00:00
/**
* Filter in our ActionScheduler Store class .
*
* @ param string $store_class ActionScheduler Store class name .
* @ return string ActionScheduler Store class name .
*/
function wc_admin_set_actionscheduler_store_class ( $store_class ) {
// Don't override any other overrides.
if ( 'ActionScheduler_wpPostStore' !== $store_class ) {
return $store_class ;
}
// Include our store class here instead of wc_admin_plugins_loaded()
// because ActionScheduler is hooked into `plugins_loaded` at a
// much higher priority.
require_once WC_ADMIN_ABSPATH . '/includes/class-wc-admin-actionscheduler-wppoststore.php' ;
return 'WC_Admin_ActionScheduler_WPPostStore' ;
}
// Hook up our modified ActionScheduler Store.
add_filter ( 'action_scheduler_store_class' , 'wc_admin_set_actionscheduler_store_class' );
2019-04-11 18:31:31 +00:00
/**
* Load plugin text domain for translations .
*/
function wc_admin_load_plugin_textdomain () {
load_plugin_textdomain ( 'woocommerce-admin' , false , basename ( dirname ( __FILE__ ) ) . '/languages' );
}
add_action ( 'plugins_loaded' , 'wc_admin_load_plugin_textdomain' );
/**
* Format a number using the decimal and thousands separator settings in WooCommerce .
*
* @ param mixed $number Number to be formatted .
* @ return string
*/
function wc_admin_number_format ( $number ) {
$currency_settings = WC_Admin_Loader :: get_currency_settings ();
return number_format (
$number ,
0 ,
$currency_settings [ 'decimal_separator' ],
$currency_settings [ 'thousand_separator' ]
);
}
/**
* Retrieves a URL to relative path inside WooCommerce admin with
* the provided query parameters .
*
* @ param string $path Relative path of the desired page .
* @ param array $query Query parameters to append to the path .
*
* @ return string Fully qualified URL pointing to the desired path .
*/
function wc_admin_url ( $path , $query = array () ) {
if ( ! empty ( $query ) ) {
$query_string = http_build_query ( $query );
$path = $path . '?' . $query_string ;
}
return admin_url ( 'admin.php?page=wc-admin#' . $path , dirname ( __FILE__ ) );
}