ActionScheduler_DataController::dependencies_met()public staticWC 1.0

Get a flag indicating whether the migration environment dependencies are met.

Method of the class: ActionScheduler_DataController{}

Return

true|false.

Usage

$result = ActionScheduler_DataController::dependencies_met();

ActionScheduler_DataController::dependencies_met() code WC 8.7.0

public static function dependencies_met() {
	$php_support = version_compare( PHP_VERSION, self::MIN_PHP_VERSION, '>=' );
	return $php_support && apply_filters( 'action_scheduler_migration_dependencies_met', true );
}