You are here

public function ThemeHandlerInterface::install 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::install()

Installs a given list of themes.

Parameters

array $theme_list: An array of theme names.

bool $install_dependencies: (optional) If TRUE, dependencies will automatically be installed in the correct order. This incurs a significant performance cost, so use FALSE if you know $theme_list is already complete and in the correct order.

Return value

bool Whether any of the given themes have been installed.

Throws

\Drupal\Core\Extension\ExtensionNameLengthException Thrown when the theme name is to long

Deprecated

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

See also

\Drupal\Core\Extension\ThemeInstallerInterface::install

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

File

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

Class

ThemeHandlerInterface
Manages the list of available themes.

Namespace

Drupal\Core\Extension

Code

public function install(array $theme_list, $install_dependencies = TRUE);