public function EntityFetchById::__construct in Rules 8.3
Constructs a EntityFetchById object.
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: The entity type manager service.
Overrides ContextAwarePluginBase::__construct
File
- src/
Plugin/ RulesAction/ EntityFetchById.php, line 59
Class
- EntityFetchById
- Provides a 'Fetch entity by id' action.
Namespace
Drupal\rules\Plugin\RulesActionCode
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;
}