You are here

public function ConfigurationForm::getFormId in Thunder 8.3

Same name in this branch
  1. 8.3 modules/thunder_media/src/Form/ConfigurationForm.php \Drupal\thunder_media\Form\ConfigurationForm::getFormId()
  2. 8.3 modules/thunder_article/src/Form/ConfigurationForm.php \Drupal\thunder_article\Form\ConfigurationForm::getFormId()
Same name and namespace in other branches
  1. 8.2 modules/thunder_article/src/Form/ConfigurationForm.php \Drupal\thunder_article\Form\ConfigurationForm::getFormId()
  2. 8.4 modules/thunder_article/src/Form/ConfigurationForm.php \Drupal\thunder_article\Form\ConfigurationForm::getFormId()
  3. 6.0.x modules/thunder_article/src/Form/ConfigurationForm.php \Drupal\thunder_article\Form\ConfigurationForm::getFormId()
  4. 6.1.x modules/thunder_article/src/Form/ConfigurationForm.php \Drupal\thunder_article\Form\ConfigurationForm::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/thunder_article/src/Form/ConfigurationForm.php, line 25

Class

ConfigurationForm
Class ConfigurationForm.

Namespace

Drupal\thunder_article\Form

Code

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