You are here

public function ThemeInstallerInterface::uninstall in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Extension/ThemeInstallerInterface.php \Drupal\Core\Extension\ThemeInstallerInterface::uninstall()

Uninstalls a given list of themes.

Uninstalling a theme removes all related configuration (like blocks) and invokes the 'themes_uninstalled' hook.

Parameters

array $theme_list: The themes to uninstall.

Throws

\Drupal\Core\Extension\Exception\UnknownExtensionException Thrown when trying to uninstall a theme that was not installed.

\InvalidArgumentException Thrown when trying to uninstall the default theme or the admin theme.

See also

hook_themes_uninstalled()

1 method overrides ThemeInstallerInterface::uninstall()
ThemeInstaller::uninstall in core/lib/Drupal/Core/Extension/ThemeInstaller.php
Uninstalls a given list of themes.

File

core/lib/Drupal/Core/Extension/ThemeInstallerInterface.php, line 51

Class

ThemeInstallerInterface
Manages theme installation/uninstallation.

Namespace

Drupal\Core\Extension

Code

public function uninstall(array $theme_list);