public BasicSettingsForm::__construct(ConfigFactoryInterface $config_factory, ThemeHandlerInterface $theme_handler)
Constructs a \Drupal\views_ui\Form\BasicSettingsForm object.
Parameters
\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The factory for configuration objects.
\Drupal\Core\Extension\ThemeHandlerInterface $theme_handler: The theme handler.
Overrides ConfigFormBase::__construct
File
- core/modules/views_ui/src/Form/BasicSettingsForm.php, line 31
Class
- BasicSettingsForm
- Form builder for the admin display defaults page.
Namespace
Drupal\views_ui\Form
Code
public function __construct(ConfigFactoryInterface $config_factory, ThemeHandlerInterface $theme_handler) { parent::__construct($config_factory); $this->themeHandler = $theme_handler; }
Please login to continue.