Action_Scheduler\Migration
Controller::display_migration_notice()
Show a dashboard notice that migration is in progress.
Метод класса: Controller{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$Controller = new Controller(); $Controller->display_migration_notice();
Код Controller::display_migration_notice() Controller::display migration notice WC 9.8.1
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' ) ); }