Files
old-experiments/backend/wordpress/wp-content/plugins/woocommerce-services/classes/class-wc-connect-error-notice.php
2018-06-20 18:28:39 +02:00

95 lines
2.7 KiB
PHP

<?php
/**
* Show admin notices when errors occur
*/
// No direct access please
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'WC_Connect_Error_Notice' ) ) {
class WC_Connect_Error_Notice {
private static $inst = null;
public static function instance() {
if ( null === self::$inst ) {
self::$inst = new WC_Connect_Error_Notice();
}
return self::$inst;
}
public function enable_notice( $error = true ) {
WC_Connect_Options::update_option( 'error_notice', $error );
}
public function disable_notice() {
WC_Connect_Options::update_option( 'error_notice', false );
}
public function render_notice() {
$error_notice = filter_input( INPUT_GET, 'wc-connect-error-notice' );
if ( 'disable' === $error_notice ) {
WC_Connect_Options::update_option( 'error_notice', false );
$url = remove_query_arg( 'wc-connect-error-notice' );
wp_safe_redirect( $url );
exit;
}
if ( $this->notice_enabled() ) {
$this->show_notice();
}
}
private function notice_enabled() {
return WC_Connect_Options::get_option( 'error_notice', false );
}
private function show_notice() {
$link_status = admin_url( 'admin.php?page=wc-status&tab=connect' );
$link_dismiss = add_query_arg( array( 'wc-connect-error-notice' => 'disable' ) );
$error = $this->notice_enabled();
if ( is_wp_error( $error ) && 'product_missing_weight' === $error->get_error_code() ) {
$error_data = $error->get_error_data();
$product_id = $error_data['product_id'];
$product = wc_get_product( $product_id );
if ( ! $product || $product->has_weight() ) {
$this->disable_notice();
return;
}
$product_name = WC_Connect_Compatibility::instance()->get_product_name( $product );
$message = sprintf(
__( '<strong>%2$s does not have a weight defined.</strong><br />Shipping rates cannot be calculated. <a href="%1$s">Add a weight for %2$s</a> so your customers can purchase this item.', 'woocommerce-services' ),
get_edit_post_link( $product_id ), $product_name
);
} else {
$message = sprintf(
__( 'An error occurred in WooCommerce Services. Details are logged <a href="%s">here</a>.', 'woocommerce-services' ),
$link_status
);
}
$allowed_html = array(
'a' => array( 'href' => array() ),
'strong' => array(),
'br' => array(),
);
?>
<div class='notice notice-error' style="position: relative;">
<a href="<?php echo esc_url( $link_dismiss ); ?>" style="text-decoration: none;" class="notice-dismiss" title="<?php esc_attr_e( 'Dismiss this notice', 'woocommerce-services' ); ?>"></a>
<p><?php echo wp_kses( $message, $allowed_html ); ?></p>
</div>
<?php
echo "";
}
}
}