DependencyVersionTestHooks.php

Namespace

Drupal\dependency_version_test\Hook

File

core/modules/system/tests/modules/dependency_version_test/src/Hook/DependencyVersionTestHooks.php

View source
<?php

declare (strict_types=1);
namespace Drupal\dependency_version_test\Hook;

use Drupal\Core\Extension\Extension;
use Drupal\Core\Hook\Attribute\Hook;

/**
 * Hook implementations for dependency_version_test.
 */
class DependencyVersionTestHooks {
    
    /**
     * Implements hook_system_info_alter().
     */
    public function systemInfoAlter(&$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)',
            ];
        }
    }

}

Classes

Title Deprecated Summary
DependencyVersionTestHooks Hook implementations for dependency_version_test.

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