ActionScheduler_DataController::is_migration_completepublic staticWC 1.0

Get a flag indicating whether the migration is complete.

Method of the class: ActionScheduler_DataController{}

No Hooks.

Returns

bool. Whether the flag has been set marking the migration as complete

Usage

$result = ActionScheduler_DataController::is_migration_complete();

ActionScheduler_DataController::is_migration_complete() code WC 11.1.1

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