ActionScheduler_DataController::dependencies_met()public staticWC 1.0

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

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

Хуки из метода

Возвращает

true|false.

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

$result = ActionScheduler_DataController::dependencies_met();

Код ActionScheduler_DataController::dependencies_met() 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 );
}