You are here

public function CountryDefaultWidget::__construct in Address 8

Constructs a CountryDefaultWidget object.

Parameters

string $plugin_id: The plugin_id for the widget.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\Core\Field\FieldDefinitionInterface $field_definition: The definition of the field to which the widget is associated.

array $settings: The widget settings.

array $third_party_settings: Any third party settings.

\CommerceGuys\Addressing\Country\CountryRepositoryInterface $country_repository: The country repository.

Overrides WidgetBase::__construct

File

src/Plugin/Field/FieldWidget/CountryDefaultWidget.php, line 50

Class

CountryDefaultWidget
Plugin implementation of the 'address_country_default' widget.

Namespace

Drupal\address\Plugin\Field\FieldWidget

Code

public function __construct($plugin_id, $plugin_definition, FieldDefinitionInterface $field_definition, array $settings, array $third_party_settings, CountryRepositoryInterface $country_repository) {
  parent::__construct($plugin_id, $plugin_definition, $field_definition, $settings, $third_party_settings);
  $this->countryRepository = $country_repository;
}