File: //proc/self/cwd/wp-content/plugins/woocommerce-multilingual/inc/class-wcml-cart-sync-warnings.php
<?php
class WCML_Cart_Sync_Warnings {
const KEY_DISMISS = 'dismiss_cart_warning';
/**
* @var woocommerce_wpml
*/
private $woocommerce_wpml;
/**
* @var SitePress
*/
private $sitepress;
/**
* @var array
*/
private $extensions_list = [
'WC_Subscriptions' => 'Woocommerce Subscriptions',
'WC_Product_Addons' => 'Woocommerce Product Addons',
'WC_Bookings' => 'Woocommerce Bookings',
'WC_Accommodation_Bookings_Plugin' => 'Woocommerce Accommodation Bookings',
'WC_Product_Bundle' => 'Woocommerce Product Bundles',
'WC_Composite_Products' => 'Woocommerce Composite Products',
'RP_WCDPD' => 'WooCommerce Dynamic Pricing & Discounts',
];
public function __construct( $woocommerce_wpml, $sitepress ) {
$this->woocommerce_wpml = $woocommerce_wpml;
$this->sitepress = $sitepress;
}
public function add_hooks() {
if ( $this->check_if_show_notices_needed() ) {
add_action( 'admin_notices', [ $this, 'show_cart_notice' ] );
add_action( 'admin_enqueue_scripts', [ $this, 'register_styles' ] );
}
add_action( 'admin_init', [ $this, 'handle_dismiss_cart_notice' ] );
}
public function check_if_show_notices_needed() {
$cart_sync_settings = $this->woocommerce_wpml->settings['cart_sync'];
if (
(
$cart_sync_settings['lang_switch'] === $this->sitepress->get_wp_api()->constant( 'WCML_CART_SYNC' ) ||
$cart_sync_settings['currency_switch'] === $this->sitepress->get_wp_api()->constant( 'WCML_CART_SYNC' )
) &&
! $this->woocommerce_wpml->settings[self::KEY_DISMISS] &&
$this->get_list_of_active_extensions()
) {
return true;
}
return false;
}
public function register_styles() {
wp_enqueue_style( 'wcml-cart-warning', $this->sitepress->get_wp_api()->constant( 'WCML_PLUGIN_URL' ) . '/res/css/wcml-cart-warning.css' );
}
public function show_cart_notice() {
$list_of_extensions = $this->get_list_of_active_extensions();
$request_url = esc_url( $_SERVER['REQUEST_URI'] );
$admin_settings_url = esc_url( \WCML\Utilities\AdminUrl::getSettingsTab() . '#cart' );
$documentation_link = esc_url( WCML_Tracking_Link::getWcmlClearCartDoc() );
$reset_cart_strings[] = esc_html_x( 'Because of some elements in your site configuration, when the users switch the currency or the language on the front end, the cart content might not be synchronized correctly.', 'Reset cart option warning 1', 'woocommerce-multilingual' );
/* translators: %s is link to "reset cart configuration" */
$reset_cart_strings[] = esc_html_x( 'It is recommended that you %s with the option to reset the cart in a situation like this.', 'Reset cart option warning 2', 'woocommerce-multilingual' );
$reset_cart_configure_link = '<strong><a href="' . $admin_settings_url . '">' . esc_html__( 'configure WooCommerce Multilingual & Multicurrency', 'woocommerce-multilingual' ) . '</a></strong>';
$reset_cart_message = $reset_cart_strings[0];
$reset_cart_message .= '</p>';
$reset_cart_message .= $list_of_extensions;
$reset_cart_message .= '<p>';
$reset_cart_message .= $reset_cart_strings[1];
$reset_cart_message .= '<strong><a href="' . $documentation_link . '" target="_blank">' . esc_html__( 'More details', 'woocommerce-multilingual' ) . '</a></strong>';
$message = '<div class="message error otgs-is-dismissible">';
$message .= '<p>';
$message .= sprintf( $reset_cart_message, $reset_cart_configure_link );
$message .= '</p>';
$message .= '<a class="notice-dismiss" href="' . esc_url( add_query_arg( 'wcml_action', self::KEY_DISMISS, $request_url ) ) . '"><span class="screen-reader-text">' . esc_html__( 'Dismiss', 'woocommerce-multilingual' ) . '</span></a>';
$message .= '</div>';
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo $message;
}
public function get_list_of_active_extensions() {
$html = '';
foreach ( $this->extensions_list as $extension_class => $display_name ) {
if ( class_exists( $extension_class ) ) {
if ( empty( $html ) ) {
$html .= '<ul>';
}
$html .= '<li>' . $display_name . '</li>';
}
}
if ( ! empty( $html ) ) {
$html .= '</ul>';
}
return $html;
}
public function handle_dismiss_cart_notice() {
if ( isset( $_GET['wcml_action'] ) && $_GET['wcml_action'] === self::KEY_DISMISS ) {
$this->woocommerce_wpml->settings[self::KEY_DISMISS] = true;
$this->woocommerce_wpml->update_settings();
wcml_safe_redirect( remove_query_arg( 'wcml_action' ) ); // Redirect to avoid repeating the action
}
}
}