public function FieldInheritance::setDestinationEntityType in Field Inheritance 2.0.x
Same name and namespace in other branches
- 8 src/Entity/FieldInheritance.php \Drupal\field_inheritance\Entity\FieldInheritance::setDestinationEntityType()
Set the inheritance destination entity type.
The inheritance destination entity type.
Return value
$this
Overrides FieldInheritanceInterface::setDestinationEntityType
File
- src/
Entity/ FieldInheritance.php, line 209
Class
- FieldInheritance
- Defines the Field inheritance entity.
Namespace
Drupal\field_inheritance\EntityCode
public function setDestinationEntityType($destination_entity_type) {
$this->destinationEntityType = $destination_entity_type;
return $this;
}