You are here

public function UserEmailChangeCancelForm::getFormId in Email confirmer 8

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 EntityForm::getFormId

1 call to UserEmailChangeCancelForm::getFormId()
UserEmailChangeCancelForm::getFormName in email_confirmer_user/src/Form/UserEmailChangeCancelForm.php
Returns the internal name used to refer to the confirmation item.

File

email_confirmer_user/src/Form/UserEmailChangeCancelForm.php, line 92

Class

UserEmailChangeCancelForm
User pending email change cancellation form.

Namespace

Drupal\email_confirmer_user\Form

Code

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