You are here

public function NegotiationUrlForm::__construct in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/language/src/Form/NegotiationUrlForm.php \Drupal\language\Form\NegotiationUrlForm::__construct()
  2. 10 core/modules/language/src/Form/NegotiationUrlForm.php \Drupal\language\Form\NegotiationUrlForm::__construct()

Constructs a new NegotiationUrlForm object.

Parameters

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

\Drupal\Core\Language\LanguageManagerInterface $language_manager: The language manager.

Overrides ConfigFormBase::__construct

File

core/modules/language/src/Form/NegotiationUrlForm.php, line 36

Class

NegotiationUrlForm
Configure the URL language negotiation method for this site.

Namespace

Drupal\language\Form

Code

public function __construct(ConfigFactoryInterface $config_factory, LanguageManagerInterface $language_manager) {
  parent::__construct($config_factory);
  $this->languageManager = $language_manager;
}