You are here

public function NodeRevisionRevertForm::getFormId in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/node/src/Form/NodeRevisionRevertForm.php \Drupal\node\Form\NodeRevisionRevertForm::getFormId()
  2. 10 core/modules/node/src/Form/NodeRevisionRevertForm.php \Drupal\node\Form\NodeRevisionRevertForm::getFormId()

Returns a unique string identifying the form.

The returned ID should be a unique string that can be a valid PHP function name, since it's used in hook implementation names such as hook_form_FORM_ID_alter().

Return value

string The unique string identifying the form.

Overrides FormInterface::getFormId

1 method overrides NodeRevisionRevertForm::getFormId()
NodeRevisionRevertTranslationForm::getFormId in core/modules/node/src/Form/NodeRevisionRevertTranslationForm.php
Returns a unique string identifying the form.

File

core/modules/node/src/Form/NodeRevisionRevertForm.php, line 79

Class

NodeRevisionRevertForm
Provides a form for reverting a node revision.

Namespace

Drupal\node\Form

Code

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