public function SettingsForm::getFormId in Content Planner 8
Same name in this branch
- 8 modules/content_kanban/src/Form/SettingsForm.php \Drupal\content_kanban\Form\SettingsForm::getFormId()
- 8 modules/content_calendar/src/Form/SettingsForm.php \Drupal\content_calendar\Form\SettingsForm::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/
content_kanban/ src/ Form/ SettingsForm.php, line 66
Class
- SettingsForm
- Defines a form that configures forms module settings.
Namespace
Drupal\content_kanban\FormCode
public function getFormId() {
return 'content_kanban_settings';
}