Mercurial > hg > isophonics-drupal-site
view core/lib/Drupal/Core/Extension/ThemeInstallerInterface.php @ 13:5fb285c0d0e3
Update Drupal core to 8.4.7 via Composer. Security update; I *think* we've
been lucky to get away with this so far, as we don't support self-registration
which seems to be used by the so-called "drupalgeddon 2" attack that 8.4.5
was vulnerable to.
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:33:26 +0100 |
parents | 4c8ae668cc8c |
children | 129ea1e6d783 |
line wrap: on
line source
<?php namespace Drupal\Core\Extension; /** * Manages theme installation/uninstallation. */ interface ThemeInstallerInterface { /** * Installs a given list of themes. * * @param array $theme_list * An array of theme names. * @param 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 bool * Whether any of the given themes have been installed. * * @throws \Drupal\Core\Extension\ExtensionNameLengthException * Thrown when the theme name is to long. */ public function install(array $theme_list, $install_dependencies = TRUE); /** * Uninstalls a given list of themes. * * Uninstalling a theme removes all related configuration (like blocks) and * invokes the 'themes_uninstalled' hook. * * @param array $theme_list * The themes to uninstall. * * @throws \InvalidArgumentException * Thrown when you uninstall an not installed theme. * * @see hook_themes_uninstalled() */ public function uninstall(array $theme_list); }