public function AutocompleteSettingsForm::__construct in Multi-path autocomplete 8
Constructs a \Drupal\mpac\AutocompleteSettingsForm object.
Parameters
\Drupal\Core\Config\ConfigFactory $config_factory: The factory for configuration objects.
\Drupal\Core\Config\Context\ContextInterface $context: The configuration context.
\Drupal\Core\Extension\ModuleHandler $module_handler: The module handler.
Overrides ConfigFormBase::__construct
File
- lib/
Drupal/ mpac/ AutocompleteSettingsForm.php, line 38 - Contains \Drupal\mpac\AutocompleteSettingsForm.
Class
- AutocompleteSettingsForm
- Configure user settings for this site.
Namespace
Drupal\mpacCode
public function __construct(ConfigFactory $config_factory, ContextInterface $context, ModuleHandler $module_handler) {
parent::__construct($config_factory, $context);
$this->moduleHandler = $module_handler;
}