You are here

public function SendGridTestForm::getFormId in SendGrid Integration 8

Same name and namespace in other branches
  1. 8.2 src/Form/SendGridTestForm.php \Drupal\sendgrid_integration\Form\SendGridTestForm::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

File

src/Form/SendGridTestForm.php, line 70

Class

SendGridTestForm
Class SendGridSettingsForm.

Namespace

Drupal\sendgrid_integration\Form

Code

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