You are here

public function TopicSettingsForm::getFormId in Open Social 8.8

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_topic/src/Form/TopicSettingsForm.php \Drupal\social_topic\Form\TopicSettingsForm::getFormId()
  2. 8.4 modules/social_features/social_topic/src/Form/TopicSettingsForm.php \Drupal\social_topic\Form\TopicSettingsForm::getFormId()
  3. 8.5 modules/social_features/social_topic/src/Form/TopicSettingsForm.php \Drupal\social_topic\Form\TopicSettingsForm::getFormId()
  4. 8.6 modules/social_features/social_topic/src/Form/TopicSettingsForm.php \Drupal\social_topic\Form\TopicSettingsForm::getFormId()
  5. 8.7 modules/social_features/social_topic/src/Form/TopicSettingsForm.php \Drupal\social_topic\Form\TopicSettingsForm::getFormId()
  6. 10.3.x modules/social_features/social_topic/src/Form/TopicSettingsForm.php \Drupal\social_topic\Form\TopicSettingsForm::getFormId()
  7. 10.0.x modules/social_features/social_topic/src/Form/TopicSettingsForm.php \Drupal\social_topic\Form\TopicSettingsForm::getFormId()
  8. 10.1.x modules/social_features/social_topic/src/Form/TopicSettingsForm.php \Drupal\social_topic\Form\TopicSettingsForm::getFormId()
  9. 10.2.x modules/social_features/social_topic/src/Form/TopicSettingsForm.php \Drupal\social_topic\Form\TopicSettingsForm::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_topic/src/Form/TopicSettingsForm.php, line 27

Class

TopicSettingsForm
Class TopicSettingsForm.

Namespace

Drupal\social_topic\Form

Code

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