You are here

public function BaseFieldDefinition::setTargetBundle in Drupal 9

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

Sets the bundle this field is defined for.

Parameters

string|null $bundle: The bundle, or NULL if the field is not bundle-specific.

Return value

$this

File

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

Class

BaseFieldDefinition
A class for defining entity fields.

Namespace

Drupal\Core\Field

Code

public function setTargetBundle($bundle) {
  $this->definition['bundle'] = $bundle;
  return $this;
}