You are here

public function ModuleConfigureForm::getFormId in Open Social 8.9

Same name and namespace in other branches
  1. 8.8 src/Installer/Form/ModuleConfigureForm.php \Drupal\social\Installer\Form\ModuleConfigureForm::getFormId()
  2. 10.3.x src/Installer/Form/ModuleConfigureForm.php \Drupal\social\Installer\Form\ModuleConfigureForm::getFormId()
  3. 10.0.x src/Installer/Form/ModuleConfigureForm.php \Drupal\social\Installer\Form\ModuleConfigureForm::getFormId()
  4. 10.1.x src/Installer/Form/ModuleConfigureForm.php \Drupal\social\Installer\Form\ModuleConfigureForm::getFormId()
  5. 10.2.x src/Installer/Form/ModuleConfigureForm.php \Drupal\social\Installer\Form\ModuleConfigureForm::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

src/Installer/Form/ModuleConfigureForm.php, line 51

Class

ModuleConfigureForm
Provides the site configuration form.

Namespace

Drupal\social\Installer\Form

Code

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