You are here

public function RegionalForm::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 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\Locale\CountryManagerInterface $country_manager: The country manager.

Overrides ConfigFormBase::__construct

File

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

Class

RegionalForm
Configure regional settings for this site.

Namespace

Drupal\system\Form

Code

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