public BaseFieldDefinition::setTargetEntityTypeId($entity_type_id)
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 601
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; }
Please login to continue.