You are here

public function ApigeeEntityListElement::__construct in Apigee Edge 8

ApigeeEntityListElement constructor.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

array $plugin_definition: The plugin implementation definition.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

Overrides PluginBase::__construct

File

src/Element/ApigeeEntityListElement.php, line 54

Class

ApigeeEntityListElement
Provides an element for listing Apigee entities.

Namespace

Drupal\apigee_edge\Element

Code

public function __construct(array $configuration, $plugin_id, array $plugin_definition, EntityTypeManagerInterface $entity_type_manager) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->entityTypeManager = $entity_type_manager;
}