woocommerce/includes/admin/views/html-notice-regenerating-lo...

34 lines
1.2 KiB
PHP
Raw Normal View History

<?php
/**
* Admin View: Notice - Regenerating thumbnails.
*
* @package WooCommerce/admin
*/
defined( 'ABSPATH' ) || exit;
2019-04-18 19:06:17 +00:00
$pending_actions_url = admin_url( 'admin.php?page=wc-status&tab=action-scheduler&s=wc_update_product_lookup_tables&status=pending' );
$cron_disabled = defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON;
?>
<div id="message" class="updated woocommerce-message">
<p>
2019-04-18 19:06:17 +00:00
<strong><?php esc_html_e( 'WooCommerce is updating product data in the background.', 'woocommerce' ); ?></strong><br/>
<?php
2019-04-18 19:06:17 +00:00
esc_html_e( 'Product display, sorting, and reports may not be accurate until this finishes. It will take a few minutes and this notice will disappear when complete.', 'woocommerce' );
if ( $cron_disabled ) {
echo '<br><span style="color:red;">' . esc_html__( 'Warning: WP CRON has been disabled on your install which may prevent this update from completing.', 'woocommerce' ) . '</span>';
}
?>
2019-04-18 19:06:17 +00:00
&nbsp;<a href="<?php echo esc_url( $pending_actions_url ); ?>">
<?php
if ( $cron_disabled ) {
esc_html_e( 'You can manually run queued updates here.', 'woocommerce' );
} else {
esc_html_e( 'View progress &rarr;', 'woocommerce' );
}
?>
</a>
</p>
</div>