Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Render/theme.api.php \hook_themes_uninstalled()
  2. 9 core/lib/Drupal/Core/Render/theme.api.php \hook_themes_uninstalled()

Respond to themes being uninstalled.

Parameters

array $themes: Array containing the names of the themes being uninstalled.

See also

\Drupal\Core\Extension\ThemeInstallerInterface::uninstall()

Related topics

5 functions implement hook_themes_uninstalled()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

breakpoint_themes_uninstalled in core/modules/breakpoint/breakpoint.module
Implements hook_themes_uninstalled().
config_translation_themes_uninstalled in core/modules/config_translation/config_translation.module
Implements hook_themes_uninstalled().
help_themes_uninstalled in core/modules/help/help.module
Implements hook_themes_uninstalled().
locale_themes_uninstalled in core/modules/locale/locale.module
Implements hook_themes_uninstalled().
update_themes_uninstalled in core/modules/update/update.module
Implements hook_themes_uninstalled().

File

core/lib/Drupal/Core/Render/theme.api.php, line 789
Hooks and documentation related to the theme and render system.

Code

function hook_themes_uninstalled(array $themes) {

  // Remove some state entries depending on the theme.
  foreach ($themes as $theme) {
    \Drupal::state()
      ->delete('example.' . $theme);
  }
}