class-wc-connect-error-notice.php
2.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?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 ) ) {
return;
}
$message = false;
if (
'product_missing_weight' === $error->get_error_code() ||
'product_missing_dimension' === $error->get_error_code()
) {
$error_data = $error->get_error_data();
$id = $error_data['product_id'];
$product = wc_get_product( $id );
if (
! $product ||
(
$product->has_weight() &&
$product->get_length() &&
$product->get_height() &&
$product->get_width()
)
) {
$this->disable_notice();
return;
}
$product_name = $product->get_name();
$product_id = $product->is_type( 'variation' ) ? $product->get_parent_id() : $product->get_id();
$message = sprintf(
__( '<strong>"%2$s" is missing weight, length, width, or height.</strong><br />Shipping rates cannot be calculated. <a href="%1$s">Enter dimensions and weight for %2$s</a> so your customers can purchase this item.', 'woocommerce-services' ),
get_edit_post_link( $product_id ),
$product_name
);
}
if ( ! $message ) {
return;
}
$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 '';
}
}
}