You are here

public function Media::__construct in Crop API 8

Same name and namespace in other branches
  1. 8.2 src/Plugin/Crop/EntityProvider/Media.php \Drupal\crop\Plugin\Crop\EntityProvider\Media::__construct()

Constructs media integration plugin.

Parameters

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

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: Entity type manager service.

Overrides PluginBase::__construct

File

src/Plugin/Crop/EntityProvider/Media.php, line 41

Class

Media
Media crop integration.

Namespace

Drupal\crop\Plugin\Crop\EntityProvider

Code

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