function BaseFieldDefinition::setTargetBundle

Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\BaseFieldDefinition::setTargetBundle()
  2. 10 core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\BaseFieldDefinition::setTargetBundle()
  3. 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\Field

Code

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.