You are here

BatchTermController.php in Batch add terms 8

File

src/Controller/BatchTermController.php
View source
<?php

namespace Drupal\batch_add_terms\Controller;

use Drupal\Core\Controller\ControllerBase;

/**
 * Class for Batch add terms Controller.
 *
 * @package Drupal\batch_add_terms\Controller
 */
class BatchTermController extends ControllerBase {

  /**
   * Callback function for batch_add_terms.mass_add route.
   */
  public function batchAddTerms($taxonomy_vocabulary) {
    return \Drupal::formBuilder()
      ->getForm('Drupal\\batch_add_terms\\Form\\BatchAddTermForm');
  }

}

Classes

Namesort descending Description
BatchTermController Class for Batch add terms Controller.