DeleteForm::buildForm

public DeleteForm::buildForm(array $form, FormStateInterface $form_state, TermInterface $taxonomy_term = NULL)

Form constructor.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array The form structure.

Overrides ConfirmFormBase::buildForm

File

core/modules/forum/src/Form/DeleteForm.php, line 53

Class

DeleteForm
Builds the form to delete a forum term.

Namespace

Drupal\forum\Form

Code

public function buildForm(array $form, FormStateInterface $form_state, TermInterface $taxonomy_term = NULL) {
  $this->taxonomyTerm = $taxonomy_term;

  return parent::buildForm($form, $form_state);
}
doc_Drupal
2016-10-29 09:02:07
Comments
Leave a Comment

Please login to continue.