You are here

public function BaseFieldDefinition::setTargetEntityTypeId in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\BaseFieldDefinition::setTargetEntityTypeId()

Sets the ID of the type of the entity this field is attached to.

Parameters

string $entity_type_id: The name of the target entity type to set.

Return value

$this

File

core/lib/Drupal/Core/Field/BaseFieldDefinition.php, line 634

Class

BaseFieldDefinition
A class for defining entity fields.

Namespace

Drupal\Core\Field

Code

public function setTargetEntityTypeId($entity_type_id) {
  $this->definition['entity_type'] = $entity_type_id;
  return $this;
}