BaseFieldDefinition::setTargetBundle

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;
}
doc_Drupal
2016-10-29 08:45:45
Comments
Leave a Comment

Please login to continue.