Action_Scheduler\Migration

Controller::display_migration_notice()publicWC 1.0

Show a dashboard notice that migration is in progress.

Метод класса: Controller{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

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

Код Controller::display_migration_notice() 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' ) );
}