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

Breadcrumb

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

function Term::bundleFieldDefinitions

Overrides ContentEntityBase::bundleFieldDefinitions

File

core/modules/taxonomy/src/Entity/Term.php, line 232

Class

Term
Defines the taxonomy term entity.

Namespace

Drupal\taxonomy\Entity

Code

public static function bundleFieldDefinitions(EntityTypeInterface $entity_type, $bundle, array $base_field_definitions) {
    // Only terms in the same bundle can be a parent.
    $fields['parent'] = clone $base_field_definitions['parent'];
    $fields['parent']->setSetting('handler_settings', [
        'target_bundles' => [
            $bundle => $bundle,
        ],
    ]);
    return $fields;
}
RSS feed
Powered by Drupal