public function ScheduleRevisionRevertTranslationForm::getFormId in Business Rules 2.x
Same name and namespace in other branches
- 8 src/Form/ScheduleRevisionRevertTranslationForm.php \Drupal\business_rules\Form\ScheduleRevisionRevertTranslationForm::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 ScheduleRevisionRevertForm::getFormId
File
- src/
Form/ ScheduleRevisionRevertTranslationForm.php, line 63
Class
- ScheduleRevisionRevertTranslationForm
- Provides a form for reverting a Schedule revision for a single translation.
Namespace
Drupal\business_rules\FormCode
public function getFormId() {
return 'schedule_revision_revert_translation_confirm';
}