You are here

public function FooterSettingsForm::getFormId in Open Social 10.3.x

Same name and namespace in other branches
  1. 10.0.x modules/social_features/social_footer/src/Form/FooterSettingsForm.php \Drupal\social_footer\Form\FooterSettingsForm::getFormId()
  2. 10.1.x modules/social_features/social_footer/src/Form/FooterSettingsForm.php \Drupal\social_footer\Form\FooterSettingsForm::getFormId()
  3. 10.2.x modules/social_features/social_footer/src/Form/FooterSettingsForm.php \Drupal\social_footer\Form\FooterSettingsForm::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/social_features/social_footer/src/Form/FooterSettingsForm.php, line 44

Class

FooterSettingsForm
Creates a form for configuring footer block.

Namespace

Drupal\social_footer\Form

Code

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