woocommerce/includes/admin/class-wc-admin-notices.php

349 lines
11 KiB
PHP
Raw Normal View History

<?php
/**
2015-11-03 13:53:50 +00:00
* Display notices in admin
*
2018-04-17 20:44:11 +00:00
* @package WooCommerce\Admin
* @version 3.4.0
*/
2018-04-17 20:44:11 +00:00
defined( 'ABSPATH' ) || exit;
/**
* WC_Admin_Notices Class.
*/
class WC_Admin_Notices {
/**
* Stores notices.
*
* @var array
*/
private static $notices = array();
/**
* Array of notices - name => callback.
*
* @var array
*/
2016-05-11 13:22:06 +00:00
private static $core_notices = array(
2018-02-13 12:02:24 +00:00
'install' => 'install_notice',
'update' => 'update_notice',
'template_files' => 'template_file_check_notice',
'legacy_shipping' => 'legacy_shipping_notice',
'no_shipping_methods' => 'no_shipping_methods_notice',
'simplify_commerce' => 'simplify_commerce_notice',
'regenerating_thumbnails' => 'regenerating_thumbnails_notice',
'no_secure_connection' => 'secure_connection_notice',
);
/**
* Constructor.
*/
2016-05-11 13:22:06 +00:00
public static function init() {
self::$notices = get_option( 'woocommerce_admin_notices', array() );
add_action( 'switch_theme', array( __CLASS__, 'reset_admin_notices' ) );
add_action( 'woocommerce_installed', array( __CLASS__, 'reset_admin_notices' ) );
add_action( 'wp_loaded', array( __CLASS__, 'hide_notices' ) );
add_action( 'shutdown', array( __CLASS__, 'store_notices' ) );
if ( current_user_can( 'manage_woocommerce' ) ) {
2016-05-11 13:22:06 +00:00
add_action( 'admin_print_styles', array( __CLASS__, 'add_notices' ) );
}
2015-04-29 09:47:57 +00:00
}
2016-05-11 13:22:06 +00:00
/**
* Store notices to DB
*/
public static function store_notices() {
update_option( 'woocommerce_admin_notices', self::get_notices() );
}
/**
* Get notices
*
2016-05-11 13:22:06 +00:00
* @return array
*/
public static function get_notices() {
return self::$notices;
}
2015-04-29 09:47:57 +00:00
/**
* Remove all notices.
2015-04-29 09:47:57 +00:00
*/
public static function remove_all_notices() {
2016-05-11 13:22:06 +00:00
self::$notices = array();
}
/**
* Reset notices for themes when switched or a new version of WC is installed.
*/
2016-05-11 13:22:06 +00:00
public static function reset_admin_notices() {
$simplify_options = get_option( 'woocommerce_simplify_commerce_settings', array() );
$location = wc_get_base_location();
2018-04-17 21:26:08 +00:00
$shop_page = 0 < wc_get_page_id( 'shop' ) ? get_permalink( wc_get_page_id( 'shop' ) ) : get_home_url();
2018-04-17 20:44:11 +00:00
if ( ! class_exists( 'WC_Gateway_Simplify_Commerce_Loader' ) && ! empty( $simplify_options['enabled'] ) && 'yes' === $simplify_options['enabled'] && in_array( $location['country'], apply_filters( 'woocommerce_gateway_simplify_commerce_supported_countries', array( 'US', 'IE' ) ), true ) ) {
WC_Admin_Notices::add_notice( 'simplify_commerce' );
}
2018-04-17 21:26:08 +00:00
if ( ! is_ssl() || 'https' !== substr( $shop_page, 0, 5 ) ) {
WC_Admin_Notices::add_notice( 'no_secure_connection' );
}
self::add_notice( 'template_files' );
}
/**
* Show a notice.
*
2018-04-17 20:44:11 +00:00
* @param string $name Notice name.
*/
public static function add_notice( $name ) {
2016-05-11 13:22:06 +00:00
self::$notices = array_unique( array_merge( self::get_notices(), array( $name ) ) );
}
/**
* Remove a notice from being displayed.
*
2018-04-17 20:44:11 +00:00
* @param string $name Notice name.
*/
public static function remove_notice( $name ) {
2016-05-11 13:22:06 +00:00
self::$notices = array_diff( self::get_notices(), array( $name ) );
delete_option( 'woocommerce_admin_notice_' . $name );
}
/**
* See if a notice is being shown.
*
2018-04-17 20:44:11 +00:00
* @param string $name Notice name.
* @return boolean
*/
public static function has_notice( $name ) {
2018-04-17 20:44:11 +00:00
return in_array( $name, self::get_notices(), true );
}
/**
* Hide a notice if the GET variable is set.
*/
2016-05-11 13:22:06 +00:00
public static function hide_notices() {
2018-04-17 20:44:11 +00:00
if ( isset( $_GET['wc-hide-notice'] ) && isset( $_GET['_wc_notice_nonce'] ) ) { // WPCS: input var ok, CSRF ok.
if ( ! wp_verify_nonce( sanitize_key( wp_unslash( $_GET['_wc_notice_nonce'] ) ), 'woocommerce_hide_notices_nonce' ) ) { // WPCS: input var ok, CSRF ok.
wp_die( esc_html__( 'Action failed. Please refresh the page and retry.', 'woocommerce' ) );
}
if ( ! current_user_can( 'manage_woocommerce' ) ) {
2018-04-17 20:44:11 +00:00
wp_die( esc_html__( 'You don&#8217;t have permission to do this.', 'woocommerce' ) );
}
2018-04-17 20:44:11 +00:00
$hide_notice = sanitize_text_field( wp_unslash( $_GET['wc-hide-notice'] ) ); // WPCS: input var ok, CSRF ok.
2018-01-24 17:18:28 +00:00
self::remove_notice( $hide_notice );
2018-01-24 17:18:28 +00:00
update_user_meta( get_current_user_id(), 'dismissed_' . $hide_notice . '_notice', true );
do_action( 'woocommerce_hide_' . $hide_notice . '_notice' );
}
}
/**
* Add notices + styles if needed.
*/
2016-05-11 13:22:06 +00:00
public static function add_notices() {
$notices = self::get_notices();
2016-06-06 16:24:31 +00:00
if ( ! empty( $notices ) ) {
2017-07-11 18:59:39 +00:00
wp_enqueue_style( 'woocommerce-activation', plugins_url( '/assets/css/activation.css', WC_PLUGIN_FILE ), array(), WC_VERSION );
2017-07-06 06:03:15 +00:00
2018-04-17 20:44:11 +00:00
// Add RTL support.
2017-07-06 06:03:15 +00:00
wp_style_add_data( 'woocommerce-activation', 'rtl', 'replace' );
foreach ( $notices as $notice ) {
2016-05-11 13:22:06 +00:00
if ( ! empty( self::$core_notices[ $notice ] ) && apply_filters( 'woocommerce_show_admin_notice', true, $notice ) ) {
add_action( 'admin_notices', array( __CLASS__, self::$core_notices[ $notice ] ) );
} else {
2016-05-11 13:22:06 +00:00
add_action( 'admin_notices', array( __CLASS__, 'output_custom_notices' ) );
}
}
}
}
/**
* Add a custom notice.
*
2018-04-17 20:44:11 +00:00
* @param string $name Notice name.
* @param string $notice_html Notice HTML.
*/
public static function add_custom_notice( $name, $notice_html ) {
self::add_notice( $name );
update_option( 'woocommerce_admin_notice_' . $name, wp_kses_post( $notice_html ) );
}
/**
* Output any stored custom notices.
*/
2016-05-11 13:22:06 +00:00
public static function output_custom_notices() {
$notices = self::get_notices();
2016-06-06 16:24:31 +00:00
if ( ! empty( $notices ) ) {
foreach ( $notices as $notice ) {
2016-05-11 13:22:06 +00:00
if ( empty( self::$core_notices[ $notice ] ) ) {
$notice_html = get_option( 'woocommerce_admin_notice_' . $notice );
if ( $notice_html ) {
2018-04-17 20:44:11 +00:00
include dirname( __FILE__ ) . '/views/html-notice-custom.php';
}
}
2015-04-29 09:47:57 +00:00
}
}
}
/**
* If we need to update, include a message with the update button.
*/
2016-05-11 13:22:06 +00:00
public static function update_notice() {
if ( version_compare( get_option( 'woocommerce_db_version' ), WC_VERSION, '<' ) ) {
$updater = new WC_Background_Updater();
2018-04-17 20:44:11 +00:00
if ( $updater->is_updating() || ! empty( $_GET['do_update_woocommerce'] ) ) { // WPCS: input var ok, CSRF ok.
include dirname( __FILE__ ) . '/views/html-notice-updating.php';
} else {
2018-04-17 20:44:11 +00:00
include dirname( __FILE__ ) . '/views/html-notice-update.php';
}
2016-05-11 13:22:06 +00:00
} else {
2018-04-17 20:44:11 +00:00
include dirname( __FILE__ ) . '/views/html-notice-updated.php';
2016-05-11 13:22:06 +00:00
}
2016-05-11 11:43:35 +00:00
}
/**
* If we have just installed, show a message with the install pages button.
*/
2016-05-11 13:22:06 +00:00
public static function install_notice() {
2018-04-17 20:44:11 +00:00
include dirname( __FILE__ ) . '/views/html-notice-install.php';
}
/**
* Show the Theme Check notice.
2018-01-10 17:52:52 +00:00
*
* @todo Remove this next major release.
*/
public static function theme_check_notice() {
2018-01-10 17:52:52 +00:00
wc_deprecated_function( 'WC_Admin_Notices::theme_check_notice', '3.3.0' );
if ( ! current_theme_supports( 'woocommerce' ) ) {
2018-04-17 20:44:11 +00:00
include dirname( __FILE__ ) . '/views/html-notice-theme-support.php';
}
}
/**
* Show a notice highlighting bad template files.
*/
2016-05-11 13:22:06 +00:00
public static function template_file_check_notice() {
$core_templates = WC_Admin_Status::scan_template_files( WC()->plugin_path() . '/templates' );
$outdated = false;
foreach ( $core_templates as $file ) {
2015-04-01 13:33:56 +00:00
$theme_file = false;
if ( file_exists( get_stylesheet_directory() . '/' . $file ) ) {
$theme_file = get_stylesheet_directory() . '/' . $file;
2017-10-16 11:03:12 +00:00
} elseif ( file_exists( get_stylesheet_directory() . '/' . WC()->template_path() . $file ) ) {
$theme_file = get_stylesheet_directory() . '/' . WC()->template_path() . $file;
} elseif ( file_exists( get_template_directory() . '/' . $file ) ) {
$theme_file = get_template_directory() . '/' . $file;
2017-10-16 11:03:12 +00:00
} elseif ( file_exists( get_template_directory() . '/' . WC()->template_path() . $file ) ) {
$theme_file = get_template_directory() . '/' . WC()->template_path() . $file;
}
2016-09-07 22:32:24 +00:00
if ( false !== $theme_file ) {
$core_version = WC_Admin_Status::get_file_version( WC()->plugin_path() . '/templates/' . $file );
$theme_version = WC_Admin_Status::get_file_version( $theme_file );
if ( $core_version && $theme_version && version_compare( $theme_version, $core_version, '<' ) ) {
$outdated = true;
break;
}
}
}
if ( $outdated ) {
2018-04-17 20:44:11 +00:00
include dirname( __FILE__ ) . '/views/html-notice-template-check.php';
} else {
self::remove_notice( 'template_files' );
}
}
/**
* Show a notice asking users to convert to shipping zones.
*/
2016-05-11 13:22:06 +00:00
public static function legacy_shipping_notice() {
$maybe_load_legacy_methods = array( 'flat_rate', 'free_shipping', 'international_delivery', 'local_delivery', 'local_pickup' );
$enabled = false;
foreach ( $maybe_load_legacy_methods as $method ) {
$options = get_option( 'woocommerce_' . $method . '_settings' );
if ( $options && isset( $options['enabled'] ) && 'yes' === $options['enabled'] ) {
$enabled = true;
}
}
if ( $enabled ) {
2018-04-17 20:44:11 +00:00
include dirname( __FILE__ ) . '/views/html-notice-legacy-shipping.php';
} else {
self::remove_notice( 'template_files' );
}
}
2016-03-31 17:54:33 +00:00
/**
* No shipping methods.
*/
2016-05-11 13:22:06 +00:00
public static function no_shipping_methods_notice() {
2018-04-17 20:44:11 +00:00
if ( wc_shipping_enabled() && ( empty( $_GET['page'] ) || empty( $_GET['tab'] ) || 'wc-settings' !== $_GET['page'] || 'shipping' !== $_GET['tab'] ) ) { // WPCS: input var ok, CSRF ok.
2016-03-31 17:54:33 +00:00
$product_count = wp_count_posts( 'product' );
$method_count = wc_get_shipping_method_count();
2016-03-31 17:54:33 +00:00
if ( $product_count->publish > 0 && 0 === $method_count ) {
2018-04-17 20:44:11 +00:00
include dirname( __FILE__ ) . '/views/html-notice-no-shipping-methods.php';
2016-03-31 17:54:33 +00:00
}
if ( $method_count > 0 ) {
self::remove_notice( 'no_shipping_methods' );
}
}
}
/**
* Simplify Commerce is being removed from core.
*/
2016-05-11 13:22:06 +00:00
public static function simplify_commerce_notice() {
$location = wc_get_base_location();
2016-06-06 16:24:31 +00:00
2018-04-17 20:44:11 +00:00
if ( class_exists( 'WC_Gateway_Simplify_Commerce_Loader' ) || ! in_array( $location['country'], apply_filters( 'woocommerce_gateway_simplify_commerce_supported_countries', array( 'US', 'IE' ) ), true ) ) {
self::remove_notice( 'simplify_commerce' );
return;
}
2018-04-17 20:44:11 +00:00
if ( empty( $_GET['action'] ) ) { // WPCS: input var ok, CSRF ok.
include dirname( __FILE__ ) . '/views/html-notice-simplify-commerce.php';
}
}
2018-02-13 12:02:24 +00:00
/**
* Notice shown when regenerating thumbnails background process is running.
*/
public static function regenerating_thumbnails_notice() {
2018-04-17 20:44:11 +00:00
include dirname( __FILE__ ) . '/views/html-notice-regenerating-thumbnails.php';
2018-02-13 12:02:24 +00:00
}
/**
* Notice about secure connection.
*/
public static function secure_connection_notice() {
2018-04-17 21:26:08 +00:00
if ( get_user_meta( get_current_user_id(), 'dismissed_no_secure_connection_notice', true ) ) {
return;
}
include dirname( __FILE__ ) . '/views/html-notice-secure-connection.php';
}
}
2016-05-11 13:22:06 +00:00
WC_Admin_Notices::init();