function FieldDefinition::setTargetBundle

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Field/FieldDefinition.php \Drupal\Core\Field\FieldDefinition::setTargetBundle()
  2. 8.9.x core/lib/Drupal/Core/Field/FieldDefinition.php \Drupal\Core\Field\FieldDefinition::setTargetBundle()
  3. 10 core/lib/Drupal/Core/Field/FieldDefinition.php \Drupal\Core\Field\FieldDefinition::setTargetBundle()

Set the target bundle.

Parameters

string $bundle: The target bundle.

Return value

$this

File

core/lib/Drupal/Core/Field/FieldDefinition.php, line 90

Class

FieldDefinition
A class for defining entity field definitions.

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.