public function AdminSettings::getFormId in HubSpot 8
Same name and namespace in other branches
- 3.x src/Form/AdminSettings.php \Drupal\hubspot\Form\AdminSettings::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/ AdminSettings.php, line 60
Class
- AdminSettings
- Hubspot admin settings form.
Namespace
Drupal\hubspot\FormCode
public function getFormId() : string {
return 'hubspot_admin_settings';
}