You are here

public function EmailConfirmerResponseForm::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 EmailConfirmerResponseForm::getFormId()
EmailConfirmerResponseForm::getFormName in src/Form/EmailConfirmerResponseForm.php
Returns the internal name used to refer to the confirmation item.

File

src/Form/EmailConfirmerResponseForm.php, line 50

Class

EmailConfirmerResponseForm
Email confirmation response form.

Namespace

Drupal\email_confirmer\Form

Code

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