public function Settings::getFormId in Courier 8
Same name in this branch
- 8 src/Form/Settings.php \Drupal\courier\Form\Settings::getFormId()
- 8 courier_system/src/Form/Settings.php \Drupal\courier_system\Form\Settings::getFormId()
Same name and namespace in other branches
- 2.x courier_system/src/Form/Settings.php \Drupal\courier_system\Form\Settings::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
- courier_system/
src/ Form/ Settings.php, line 65
Class
- Settings
- Configure Courier System settings.
Namespace
Drupal\courier_system\FormCode
public function getFormId() {
return 'courier_system_settings';
}