public function ContentDelete::getFormId in Delete all 8
Same name and namespace in other branches
- 2.x src/Form/ContentDelete.php \Drupal\delete_all\Form\ContentDelete::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/ ContentDelete.php, line 37
Class
- ContentDelete
- Create a Form for deleting all content.
Namespace
Drupal\delete_all\FormCode
public function getFormId() {
return 'content_delete_all';
}