RouterInstallerTestHooks.php

Namespace

Drupal\router_installer_test\Hook

File

core/modules/system/tests/modules/router_installer_test/src/Hook/RouterInstallerTestHooks.php

View source
<?php

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

use Drupal\Core\Url;
use Drupal\Core\Hook\Attribute\Hook;

/**
 * Hook implementations for router_installer_test.
 */
class RouterInstallerTestHooks {
    
    /**
     * Implements hook_modules_installed().
     */
    public function modulesInstalled($modules) {
        if (in_array('router_installer_test', $modules, TRUE)) {
            // Ensure a URL can be generated for routes provided by the module during
            // installation.
            \Drupal::state()->set('router_installer_test_modules_installed', Url::fromRoute('router_installer_test.1')->toString());
        }
    }

}

Classes

Title Deprecated Summary
RouterInstallerTestHooks Hook implementations for router_installer_test.

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