Action_Scheduler\Migration
Controller::display_migration_notice
Show a dashboard notice that migration is in progress.
Method of the class: Controller{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Controller = new Controller(); $Controller->display_migration_notice();
Controller::display_migration_notice() Controller::display migration notice code WC 10.3.6
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' ) );
}