function SystemHooks::themeRegistryAlter

Implements hook_theme_registry_alter().

File

core/modules/system/src/Hook/SystemHooks.php, line 439

Class

SystemHooks
Hook implementations for system.

Namespace

Drupal\system\Hook

Code

public function themeRegistryAlter(array &$theme_registry) {
    // If Claro is the admin theme but not the active theme, use Claro's toolbar
    // templates.
    if (_system_is_claro_admin_and_not_active()) {
        require_once DRUPAL_ROOT . '/core/themes/claro/claro.theme';
        claro_system_module_invoked_theme_registry_alter($theme_registry);
    }
}

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