View source
<?php
namespace Drupal\system\Controller;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Config\PreExistingConfigException;
use Drupal\Core\Config\UnmetDependenciesException;
use Drupal\Core\Controller\ControllerBase;
use Drupal\Core\Extension\MissingDependencyException;
use Drupal\Core\Extension\ThemeExtensionList;
use Drupal\Core\Extension\ThemeHandlerInterface;
use Drupal\Core\Extension\ThemeInstallerInterface;
use Drupal\system\Form\ThemeExperimentalConfirmForm;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
class ThemeController extends ControllerBase {
protected $themeHandler;
protected $themeList;
protected $themeInstaller;
public function __construct(ThemeHandlerInterface $theme_handler, ThemeExtensionList $theme_list, ConfigFactoryInterface $config_factory, ThemeInstallerInterface $theme_installer) {
$this->themeHandler = $theme_handler;
$this->themeList = $theme_list;
$this->configFactory = $config_factory;
$this->themeInstaller = $theme_installer;
}
public static function create(ContainerInterface $container) {
return new static($container
->get('theme_handler'), $container
->get('extension.list.theme'), $container
->get('config.factory'), $container
->get('theme_installer'));
}
public function uninstall(Request $request) {
$theme = $request->query
->get('theme');
$config = $this
->config('system.theme');
if (isset($theme)) {
$themes = $this->themeHandler
->listInfo();
if (!empty($themes[$theme])) {
if ($theme === $config
->get('default') || $theme === $config
->get('admin')) {
$this
->messenger()
->addError($this
->t('%theme is the default theme and cannot be uninstalled.', [
'%theme' => $themes[$theme]->info['name'],
]));
}
else {
$this->themeInstaller
->uninstall([
$theme,
]);
$this
->messenger()
->addStatus($this
->t('The %theme theme has been uninstalled.', [
'%theme' => $themes[$theme]->info['name'],
]));
}
}
else {
$this
->messenger()
->addError($this
->t('The %theme theme was not found.', [
'%theme' => $theme,
]));
}
return $this
->redirect('system.themes_page');
}
throw new AccessDeniedHttpException();
}
public function install(Request $request) {
$theme = $request->query
->get('theme');
if (isset($theme)) {
if ($this
->willInstallExperimentalTheme($theme)) {
return $this
->formBuilder()
->getForm(ThemeExperimentalConfirmForm::class, $theme);
}
try {
if ($this->themeInstaller
->install([
$theme,
])) {
$themes = $this->themeHandler
->listInfo();
$this
->messenger()
->addStatus($this
->t('The %theme theme has been installed.', [
'%theme' => $themes[$theme]->info['name'],
]));
}
else {
$this
->messenger()
->addError($this
->t('The %theme theme was not found.', [
'%theme' => $theme,
]));
}
} catch (PreExistingConfigException $e) {
$config_objects = $e
->flattenConfigObjects($e
->getConfigObjects());
$this
->messenger()
->addError($this
->formatPlural(count($config_objects), 'Unable to install @extension, %config_names already exists in active configuration.', 'Unable to install @extension, %config_names already exist in active configuration.', [
'%config_names' => implode(', ', $config_objects),
'@extension' => $theme,
]));
} catch (UnmetDependenciesException $e) {
$this
->messenger()
->addError($e
->getTranslatedMessage($this
->getStringTranslation(), $theme));
} catch (MissingDependencyException $e) {
$this
->messenger()
->addError($this
->t('Unable to install @theme due to missing module dependencies.', [
'@theme' => $theme,
]));
}
return $this
->redirect('system.themes_page');
}
throw new AccessDeniedHttpException();
}
protected function willInstallExperimentalTheme($theme) {
$all_themes = $this->themeList
->getList();
$dependencies = array_keys($all_themes[$theme]->requires);
$themes_to_enable = array_merge([
$theme,
], $dependencies);
foreach ($themes_to_enable as $name) {
if (!empty($all_themes[$name]->info['experimental']) && $all_themes[$name]->status === 0) {
return TRUE;
}
}
return FALSE;
}
public function setDefaultTheme(Request $request) {
$config = $this->configFactory
->getEditable('system.theme');
$theme = $request->query
->get('theme');
if (isset($theme)) {
$themes = $this->themeHandler
->listInfo();
if ($this
->willInstallExperimentalTheme($theme)) {
return $this
->formBuilder()
->getForm(ThemeExperimentalConfirmForm::class, $theme, TRUE);
}
if (isset($themes[$theme]) || $this->themeInstaller
->install([
$theme,
])) {
$themes = $this->themeHandler
->listInfo();
$config
->set('default', $theme)
->save();
$admin_theme = $config
->get('admin');
if (!empty($admin_theme) && $admin_theme != $theme) {
$this
->messenger()
->addStatus($this
->t('Please note that the administration theme is still set to the %admin_theme theme; consequently, the theme on this page remains unchanged. All non-administrative sections of the site, however, will show the selected %selected_theme theme by default.', [
'%admin_theme' => $themes[$admin_theme]->info['name'],
'%selected_theme' => $themes[$theme]->info['name'],
]));
}
else {
$this
->messenger()
->addStatus($this
->t('%theme is now the default theme.', [
'%theme' => $themes[$theme]->info['name'],
]));
}
}
else {
$this
->messenger()
->addError($this
->t('The %theme theme was not found.', [
'%theme' => $theme,
]));
}
return $this
->redirect('system.themes_page');
}
throw new AccessDeniedHttpException();
}
}