You are here

public function FieldInheritance::sourceEntityType in Field Inheritance 2.0.x

Same name and namespace in other branches
  1. 8 src/Entity/FieldInheritance.php \Drupal\field_inheritance\Entity\FieldInheritance::sourceEntityType()

Get the inheritance source entity type.

Return value

string The inheritance source entity type.

Overrides FieldInheritanceInterface::sourceEntityType

File

src/Entity/FieldInheritance.php, line 144

Class

FieldInheritance
Defines the Field inheritance entity.

Namespace

Drupal\field_inheritance\Entity

Code

public function sourceEntityType() {
  return isset($this->sourceEntityType) ? $this->sourceEntityType : NULL;
}