function RegionalForm::__construct

Same name and namespace in other branches
  1. 9 core/modules/system/src/Form/RegionalForm.php \Drupal\system\Form\RegionalForm::__construct()
  2. 8.9.x core/modules/system/src/Form/RegionalForm.php \Drupal\system\Form\RegionalForm::__construct()
  3. 10 core/modules/system/src/Form/RegionalForm.php \Drupal\system\Form\RegionalForm::__construct()

Constructs a RegionalForm object.

Parameters

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

\Drupal\Core\Config\TypedConfigManagerInterface $typedConfigManager: The typed config manager.

\Drupal\Core\Locale\CountryManagerInterface $country_manager: The country manager.

Overrides ConfigFormBase::__construct

File

core/modules/system/src/Form/RegionalForm.php, line 40

Class

RegionalForm
Configure regional settings for this site.

Namespace

Drupal\system\Form

Code

public function __construct(ConfigFactoryInterface $config_factory, TypedConfigManagerInterface $typedConfigManager, CountryManagerInterface $country_manager) {
    parent::__construct($config_factory, $typedConfigManager);
    $this->countryManager = $country_manager;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.