function BaseFieldDefinition::setTargetBundle
Same name in other branches
- 9 core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\BaseFieldDefinition::setTargetBundle()
- 8.9.x core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\BaseFieldDefinition::setTargetBundle()
- 11.x 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 655
Class
- BaseFieldDefinition
- A class for defining entity fields.
Namespace
Drupal\Core\FieldCode
public function setTargetBundle($bundle) {
$this->definition['bundle'] = $bundle;
return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.