You are here

public function TermSelection::createNewEntity in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/taxonomy/src/Plugin/EntityReferenceSelection/TermSelection.php \Drupal\taxonomy\Plugin\EntityReferenceSelection\TermSelection::createNewEntity()
  2. 9 core/modules/taxonomy/src/Plugin/EntityReferenceSelection/TermSelection.php \Drupal\taxonomy\Plugin\EntityReferenceSelection\TermSelection::createNewEntity()

File

core/modules/taxonomy/src/Plugin/EntityReferenceSelection/TermSelection.php, line 116

Class

TermSelection
Provides specific access control for the taxonomy_term entity type.

Namespace

Drupal\taxonomy\Plugin\EntityReferenceSelection

Code

public function createNewEntity($entity_type_id, $bundle, $label, $uid) {
  $term = parent::createNewEntity($entity_type_id, $bundle, $label, $uid);

  // In order to create a referenceable term, it needs to published.

  /** @var \Drupal\taxonomy\TermInterface $term */
  $term
    ->setPublished();
  return $term;
}