set_name( self::NOTE_NAME );
$note->set_source( 'woocommerce-admin' );
$note->set_title( __( 'Review your shipping settings', 'woocommerce-admin' ) );
$note->set_content(
__(
"Based on the information that you provided we've configured some shipping rates and options for your store:
Domestic orders: free shipping
International orders: disabled
Label printing: enabled",
'woocommerce-admin'
)
);
$note->set_content_data( (object) array() );
$note->set_type( Note::E_WC_ADMIN_NOTE_INFORMATIONAL );
$note->add_action(
'edit-shipping-settings',
__( 'Edit shipping settings', 'woocommerce-admin' ),
admin_url( 'admin.php?page=wc-settings&tab=shipping' ),
Note::E_WC_ADMIN_NOTE_UNACTIONED,
true
);
return $note;
}
}