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

Breadcrumb

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

function TaxonomyController::addForm

Returns a form to add a new term to a vocabulary.

Parameters

\Drupal\taxonomy\VocabularyInterface $taxonomy_vocabulary: The vocabulary this term will be added to.

Return value

array The taxonomy term add form.

1 string reference to 'TaxonomyController::addForm'
taxonomy.routing.yml in core/modules/taxonomy/taxonomy.routing.yml
core/modules/taxonomy/taxonomy.routing.yml

File

core/modules/taxonomy/src/Controller/TaxonomyController.php, line 24

Class

TaxonomyController
Provides route responses for taxonomy.module.

Namespace

Drupal\taxonomy\Controller

Code

public function addForm(VocabularyInterface $taxonomy_vocabulary) {
    $term = $this->entityTypeManager()
        ->getStorage('taxonomy_term')
        ->create([
        'vid' => $taxonomy_vocabulary->id(),
    ]);
    return $this->entityFormBuilder()
        ->getForm($term);
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal