function ThemeInstallerInterface::uninstall

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Extension/ThemeInstallerInterface.php \Drupal\Core\Extension\ThemeInstallerInterface::uninstall()
  2. 8.9.x core/lib/Drupal/Core/Extension/ThemeInstallerInterface.php \Drupal\Core\Extension\ThemeInstallerInterface::uninstall()
  3. 10 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.

Themes are allowed to be uninstalled even when their code has been removed from the filesystem, this is because themes do not allow uninstall hooks to be defined.

Parameters

array $theme_list: The themes to uninstall.

Throws

\InvalidArgumentException Thrown when trying to uninstall the admin theme, the default theme or a theme that another theme depends on.

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 57

Class

ThemeInstallerInterface
Manages theme installation/uninstallation.

Namespace

Drupal\Core\Extension

Code

public function uninstall(array $theme_list);

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