ActionScheduler_DataController::is_migration_complete()public staticWC 1.0

Get a flag indicating whether the migration is complete.

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

Хуков нет.

Возвращает

true|false. Whether the flag has been set marking the migration as complete

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

$result = ActionScheduler_DataController::is_migration_complete();

Код ActionScheduler_DataController::is_migration_complete() WC 8.7.0

public static function is_migration_complete() {
	return get_option( self::STATUS_FLAG ) === self::STATUS_COMPLETE;
}