2016-05-11 11:43:35 +00:00
< ? php
/**
* Admin View : Notice - Updating
2018-06-07 12:40:12 +00:00
*
* @ package WooCommerce\Admin
2016-05-11 11:43:35 +00:00
*/
if ( ! defined ( 'ABSPATH' ) ) {
exit ;
}
2018-06-07 12:50:14 +00:00
$force_update_url = wp_nonce_url (
add_query_arg ( 'force_update_woocommerce' , 'true' , admin_url ( 'admin.php?page=wc-settings' ) ),
'wc_force_db_update' ,
'wc_force_db_update_nonce'
);
2016-05-11 11:43:35 +00:00
?>
< div id = " message " class = " updated woocommerce-message wc-connect " >
2018-06-07 12:40:12 +00:00
< p >
< strong >< ? php esc_html_e ( 'WooCommerce data update' , 'woocommerce' ); ?> </strong> – <?php esc_html_e( 'Your database is being updated in the background.', 'woocommerce' ); ?>
2018-06-07 12:50:14 +00:00
< a href = " <?php echo esc_url( $force_update_url ); ?> " >
2018-06-07 12:40:12 +00:00
< ? php esc_html_e ( 'Taking a while? Click here to run it now.' , 'woocommerce' ); ?>
</ a >
</ p >
2016-05-11 11:43:35 +00:00
</ div >