Action_Scheduler\Migration

Controller::display_migration_notice()publicWC 1.0

Show a dashboard notice that migration is in progress.

Method of the class: Controller{}

No Hooks.

Return

null. Nothing (null).

Usage

$Controller = new Controller();
$Controller->display_migration_notice();

Controller::display_migration_notice() code WC 8.7.0

public function display_migration_notice() {
	printf( '<div class="notice notice-warning"><p>%s</p></div>', esc_html__( 'Action Scheduler migration in progress. The list of scheduled actions may be incomplete.', 'woocommerce' ) );
}