You are here

public function EntityViewDeriver::__construct in Rules 8.3

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

Class

EntityViewDeriver
Derives entity view 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;
}