You are here

function system_theme_registry_alter in Drupal 9

Implements hook_theme_registry_alter().

File

core/modules/system/system.module, line 1324
Configuration system that lets administrators modify the workings of the site.

Code

function system_theme_registry_alter(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);
  }
}