Action_Scheduler\Migration
Controller::display_migration_notice()
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() Controller::display migration notice code WC 9.4.2
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' ) ); }