function EntityViewDeriver::__construct
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\RulesEventCode
public function __construct(EntityTypeManagerInterface $entity_type_manager, TranslationInterface $string_translation) {
$this->entityTypeManager = $entity_type_manager;
$this->stringTranslation = $string_translation;
}