function EntityInsertDeriver::__construct

Creates a new EntityInsertDeriver object.

Parameters

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

\Drupal\Core\StringTranslation\TranslationInterface $string_translation: The string translation service.

File

src/Plugin/RulesEvent/EntityInsertDeriver.php, line 34

Class

EntityInsertDeriver
Derives entity insert plugin definitions based on content entity types.

Namespace

Drupal\rules\Plugin\RulesEvent

Code

public function __construct(EntityTypeManagerInterface $entity_type_manager, TranslationInterface $string_translation) {
    $this->entityTypeManager = $entity_type_manager;
    $this->stringTranslation = $string_translation;
}