public function ConnectionRelationship::setEntityTypeManager in RedHen CRM 8
Sets the entity type manager.
Parameters
\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The new entity type manager.
Return value
$this
File
- modules/
redhen_connection/ src/ Plugin/ views/ relationship/ ConnectionRelationship.php, line 43
Class
- ConnectionRelationship
- Views relationship plugin for datasources.
Namespace
Drupal\redhen_connection\Plugin\views\relationshipCode
public function setEntityTypeManager(EntityTypeManagerInterface $entity_type_manager) {
$this->entityTypeManager = $entity_type_manager;
return $this;
}