public function TmgmtSmartlingContextDebugForm::getFormId in TMGMT Translator Smartling 8
Same name and namespace in other branches
- 8.4 modules/tmgmt_smartling_context_debug/src/Form/TmgmtSmartlingContextDebugForm.php \Drupal\tmgmt_smartling_context_debug\Form\TmgmtSmartlingContextDebugForm::getFormId()
- 8.2 modules/tmgmt_smartling_context_debug/src/Form/TmgmtSmartlingContextDebugForm.php \Drupal\tmgmt_smartling_context_debug\Form\TmgmtSmartlingContextDebugForm::getFormId()
- 8.3 modules/tmgmt_smartling_context_debug/src/Form/TmgmtSmartlingContextDebugForm.php \Drupal\tmgmt_smartling_context_debug\Form\TmgmtSmartlingContextDebugForm::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/
tmgmt_smartling_context_debug/ src/ Form/ TmgmtSmartlingContextDebugForm.php, line 19
Class
- TmgmtSmartlingContextDebugForm
- Form that helps to debug Smartling Context.
Namespace
Drupal\tmgmt_smartling_context_debug\FormCode
public function getFormId() {
return 'tmgmt_smartling_context_debug_form';
}