public function ReorderFolderForm::getFormId in Taxonomy File Tree 3.x
Same name and namespace in other branches
- 8 src/Form/ReorderFolderForm.php \Drupal\tft\Form\ReorderFolderForm::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
- src/
Form/ ReorderFolderForm.php, line 86
Class
- ReorderFolderForm
- Term reordering form.
Namespace
Drupal\tft\FormCode
public function getFormId() {
return 'tft_reorder_terms_form';
}