public function Reference::__construct in YAML Content 8
Constructs a new EntityView.
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_manager: The entity manager.
Overrides PluginBase::__construct
File
- src/
Plugin/ yaml_content/ process/ Reference.php, line 42
Class
- Reference
- Plugin for querying and loading a referenced entity.
Namespace
Drupal\yaml_content\Plugin\yaml_content\processCode
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;
}