public BaseFieldDefinition::setTargetBundle($bundle)
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 621
Class
- BaseFieldDefinition
- A class for defining entity fields.
Namespace
Drupal\Core\Field
Code
public function setTargetBundle($bundle) { $this->definition['bundle'] = $bundle; return $this; }
Please login to continue.