You are here

public function SendGridReportsSettingsForm::getFormId in SendGrid Integration 8.2

Same name and namespace in other branches
  1. 8 modules/sendgrid_integration_reports/src/Form/SendGridReportsSettingsForm.php \Drupal\sendgrid_integration_reports\Form\SendGridReportsSettingsForm::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

modules/sendgrid_integration_reports/src/Form/SendGridReportsSettingsForm.php, line 51

Class

SendGridReportsSettingsForm
Class for Sendgrid reports settings form.

Namespace

Drupal\sendgrid_integration_reports\Form

Code

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