public function ContributeSettingsForm::getFormId in Contribute 8
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
1 call to ContributeSettingsForm::getFormId()
- ContributeSettingsForm::getWrapperId in src/
Form/ ContributeSettingsForm.php - Get the form's Ajax wrapper id.
File
- src/
Form/ ContributeSettingsForm.php, line 32
Class
- ContributeSettingsForm
- Configure contribute settings for this site.
Namespace
Drupal\contribute\FormCode
public function getFormId() {
return 'contribute_settings_form';
}