public function DeleteForm::buildForm

Same name in this branch

Implements \Drupal\Core\Form\FormInterface::buildForm().

Overrides ConfirmFormBase::buildForm

File

drupal/core/modules/forum/lib/Drupal/forum/Form/DeleteForm.php, line 56
Contains \Drupal\forum\Form\DeleteForm.

Class

DeleteForm
Builds the form to delete a forum term.

Namespace

Drupal\forum\Form

Code

public function buildForm(array $form, array &$form_state, Term $taxonomy_term = NULL) {
  $this->taxonomyTerm = $taxonomy_term;
  return parent::buildForm($form, $form_state);
}