You are here

public function DeleteForm::getFormId in Zircon Profile 8.0

Same name in this branch
  1. 8.0 core/modules/path/src/Form/DeleteForm.php \Drupal\path\Form\DeleteForm::getFormId()
  2. 8.0 core/modules/forum/src/Form/DeleteForm.php \Drupal\forum\Form\DeleteForm::getFormId()
Same name and namespace in other branches
  1. 8 core/modules/forum/src/Form/DeleteForm.php \Drupal\forum\Form\DeleteForm::getFormId()

Returns a unique string identifying the form.

Return value

string The unique string identifying the form.

Overrides FormInterface::getFormId

File

core/modules/forum/src/Form/DeleteForm.php, line 30
Contains \Drupal\forum\Form\DeleteForm.

Class

DeleteForm
Builds the form to delete a forum term.

Namespace

Drupal\forum\Form

Code

public function getFormId() {
  return 'forum_confirm_delete';
}