public function ThemeSettingsForm::__construct in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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\HttpFoundation\File\MimeType\MimeTypeGuesserInterface $mime_type_guesser: The MIME type guesser instance to use.
Overrides ConfigFormBase::__construct
File
- core/
modules/ system/ src/ Form/ ThemeSettingsForm.php, line 66 - Contains \Drupal\system\Form\ThemeSettingsForm.
Class
- ThemeSettingsForm
- Displays theme configuration for entire site and individual themes.
Namespace
Drupal\system\FormCode
public function __construct(ConfigFactoryInterface $config_factory, ModuleHandlerInterface $module_handler, ThemeHandlerInterface $theme_handler, MimeTypeGuesserInterface $mime_type_guesser) {
parent::__construct($config_factory);
$this->moduleHandler = $module_handler;
$this->themeHandler = $theme_handler;
$this->mimeTypeGuesser = $mime_type_guesser;
}