function dependency_version_test_system_info_alter

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/dependency_version_test/dependency_version_test.module \dependency_version_test_system_info_alter()
  2. 10 core/modules/system/tests/modules/dependency_version_test/dependency_version_test.module \dependency_version_test_system_info_alter()

Implements hook_system_info_alter().

File

core/modules/system/tests/modules/dependency_version_test/dependency_version_test.module, line 13

Code

function dependency_version_test_system_info_alter(&$info, Extension $file, $type) {
    // Simulate that the core version for Views module contains the string '8.x'.
    if ($file->getName() == 'views') {
        $info['version'] = '9.8.x-dev';
    }
    // Make the test_module require Views 9.2, which should be compatible with
    // core version 9.8.x-dev from above.
    if ($file->getName() == 'test_module') {
        $info['dependencies'] = [
            'drupal:views (>=9.2)',
        ];
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.