function EntityUpdateDeriver::__construct

Creates a new EntityUpdateDeriver 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/EntityUpdateDeriver.php, line 34

Class

EntityUpdateDeriver
Derives entity update 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;
}