OverviewTerms::getFormId

public OverviewTerms::getFormId() Returns a unique string identifying the form. Return value string The unique string identifying the form. Overrides FormInterface::getFormId File core/modules/taxonomy/src/Form/OverviewTerms.php, line 57 Class OverviewTerms Provides terms overview form for a taxonomy vocabulary. Namespace Drupal\taxonomy\Form Code public function getFormId() { return 'taxonomy_overview_terms'; }

OverviewTerms::create

public static OverviewTerms::create(ContainerInterface $container) Instantiates a new instance of this class. This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton. Parameters \Symfony\Component\DependencyInjection\ContainerInterface $container: The service co

OverviewTerms::buildForm

public OverviewTerms::buildForm(array $form, FormStateInterface $form_state, VocabularyInterface $taxonomy_vocabulary = NULL) Form constructor. Display a tree of all the terms in a vocabulary, with options to edit each one. The form is made drag and drop by the theme function. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. \Drupal\taxonomy\VocabularyInterface $taxonomy_vocabular

OverviewTerms::$storageController

The term storage handler. Type: \Drupal\taxonomy\TermStorageInterface File core/modules/taxonomy/src/Form/OverviewTerms.php, line 29 Class OverviewTerms Provides terms overview form for a taxonomy vocabulary. Namespace Drupal\taxonomy\Form Code protected $storageController;

OverviewTerms::$moduleHandler

The module handler service. Type: \Drupal\Core\Extension\ModuleHandlerInterface File core/modules/taxonomy/src/Form/OverviewTerms.php, line 22 Class OverviewTerms Provides terms overview form for a taxonomy vocabulary. Namespace Drupal\taxonomy\Form Code protected $moduleHandler;

OverviewTerms

Provides terms overview form for a taxonomy vocabulary. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\taxonomy\Form\OverviewTerms File core/modules/taxonomy/src/Form/OverviewTerms.php, line 15 Namespace Drupal\taxonomy\Form Members Name Modifiers Type Description Dependenc

Overview::__construct

public Overview::__construct(ModuleHandlerInterface $module_handler, EntityManagerInterface $entity_manager) Constructs a \Drupal\forum\Form\OverviewForm object. Parameters \Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler service. \Drupal\Core\Entity\EntityManagerInterface $entity_manager: The entity manager service. Overrides OverviewTerms::__construct File core/modules/forum/src/Form/Overview.php, line 33 Class Overview Provides forum overview form for t

Overview::getFormId

public Overview::getFormId() Returns a unique string identifying the form. Return value string The unique string identifying the form. Overrides OverviewTerms::getFormId File core/modules/forum/src/Form/Overview.php, line 41 Class Overview Provides forum overview form for the forum vocabulary. Namespace Drupal\forum\Form Code public function getFormId() { return 'forum_overview'; }

Overview::buildForm

public Overview::buildForm(array $form, FormStateInterface $form_state) Form constructor. Display a tree of all the terms in a vocabulary, with options to edit each one. The form is made drag and drop by the theme function. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. \Drupal\taxonomy\VocabularyInterface $taxonomy_vocabulary: The vocabulary to display the overview form for. Re

Overview::$entityManager

Entity manager Service Object. Type: \Drupal\Core\Entity\EntityManagerInterface File core/modules/forum/src/Form/Overview.php, line 23 Class Overview Provides forum overview form for the forum vocabulary. Namespace Drupal\forum\Form Code protected $entityManager;