You are here

public function ThemeHandlerInterface::uninstall in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Extension/ThemeHandlerInterface.php \Drupal\Core\Extension\ThemeHandlerInterface::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

\InvalidArgumentException Thrown when you uninstall an not installed theme.

Deprecated

in Drupal 8.0.x-dev and will be removed before Drupal 9.0.0. Use the theme_installer service instead.

See also

hook_themes_uninstalled()

\Drupal\Core\Extension\ThemeInstallerInterface::uninstall

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

File

core/lib/Drupal/Core/Extension/ThemeHandlerInterface.php, line 57
Contains \Drupal\Core\Extension\ThemeHandlerInterface.

Class

ThemeHandlerInterface
Manages the list of available themes.

Namespace

Drupal\Core\Extension

Code

public function uninstall(array $theme_list);