function ThemeSettingsForm::__construct
Constructs a ThemeSettingsForm object.
Parameters
\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The factory for configuration objects.
\Drupal\Core\Config\TypedConfigManagerInterface $typedConfigManager: The typed config manager.
\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.
\Drupal\Core\Extension\ThemeSettingsProvider|null $themeSettingsProvider: The theme settings helper service.
Overrides ConfigFormBase::__construct
File
-
core/
modules/ system/ src/ Form/ ThemeSettingsForm.php, line 92
Class
- ThemeSettingsForm
- Displays theme configuration for entire site and individual themes.
Namespace
Drupal\system\FormCode
public function __construct(ConfigFactoryInterface $config_factory, TypedConfigManagerInterface $typedConfigManager, ModuleHandlerInterface $module_handler, ThemeHandlerInterface $theme_handler, $mime_type_guesser, ThemeManagerInterface $theme_manager, FileSystemInterface $file_system, protected ThemeSettingsProvider $themeSettingsProvider) {
parent::__construct($config_factory, $typedConfigManager);
$this->moduleHandler = $module_handler;
$this->themeHandler = $theme_handler;
$this->mimeTypeGuesser = $mime_type_guesser;
$this->themeManager = $theme_manager;
$this->fileSystem = $file_system;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.