You are here

public function YandexMapsSettings::getFormId in Geolocation Field 8.3

Same name and namespace in other branches
  1. 8.2 modules/geolocation_yandex/src/Form/YandexMapsSettings.php \Drupal\geolocation_yandex\Form\YandexMapsSettings::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/geolocation_yandex/src/Form/YandexMapsSettings.php, line 44

Class

YandexMapsSettings
Implements the Yandex Maps form controller.

Namespace

Drupal\geolocation_yandex\Form

Code

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