You are here

public function ThemeSettingsForm::__construct in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/src/Form/ThemeSettingsForm.php \Drupal\system\Form\ThemeSettingsForm::__construct()
  2. 9 core/modules/system/src/Form/ThemeSettingsForm.php \Drupal\system\Form\ThemeSettingsForm::__construct()

Constructs a ThemeSettingsForm object.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The factory for configuration objects.

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler instance to use.

\Drupal\Core\Extension\ThemeHandlerInterface $theme_handler: The theme handler.

\Symfony\Component\Mime\MimeTypeGuesserInterface $mime_type_guesser: The MIME type guesser instance to use.

\Drupal\Core\Theme\ThemeManagerInterface $theme_manager: The theme manager.

\Drupal\Core\File\FileSystemInterface $file_system: The file system.

Overrides ConfigFormBase::__construct

File

core/modules/system/src/Form/ThemeSettingsForm.php, line 86

Class

ThemeSettingsForm
Displays theme configuration for entire site and individual themes.

Namespace

Drupal\system\Form

Code

public function __construct(ConfigFactoryInterface $config_factory, ModuleHandlerInterface $module_handler, ThemeHandlerInterface $theme_handler, $mime_type_guesser, ThemeManagerInterface $theme_manager, FileSystemInterface $file_system) {
  parent::__construct($config_factory);
  $this->moduleHandler = $module_handler;
  $this->themeHandler = $theme_handler;
  $this->mimeTypeGuesser = $mime_type_guesser;
  $this->themeManager = $theme_manager;
  $this->fileSystem = $file_system;
}