public function WundergroundWeatherSettingsForm::getFormId in Wunderground weather 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 FormInterface::getFormId
File
- src/
Form/ WundergroundWeatherSettingsForm.php, line 74 - Contains \Drupal\wunderground_weather\Form\wunderground_weatherSettingsForm.
Class
- WundergroundWeatherSettingsForm
- Defines a form to configure module settings.
Namespace
Drupal\wunderground_weather\FormCode
public function getFormId() {
return 'wunderground_weather_settings';
}