Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. BaseFieldDefinition.php

function 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;
}
RSS feed
Powered by Drupal