You are here

public function GeocoderProviderListBuilder::__construct in Geocoder 8.3

Constructs a new EntityListBuilder object.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.

\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage class.

\Drupal\Core\Form\FormBuilderInterface $form_builder: The form builder.

Overrides EntityListBuilder::__construct

File

src/GeocoderProviderListBuilder.php, line 37

Class

GeocoderProviderListBuilder
Provides a listing of Geocoder providers.

Namespace

Drupal\geocoder

Code

public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, FormBuilderInterface $form_builder) {
  parent::__construct($entity_type, $storage);
  $this->formBuilder = $form_builder;
}