public function DeleteMultipleForm::getFormId in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/Form/DeleteMultipleForm.php \Drupal\Core\Entity\Form\DeleteMultipleForm::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
- core/
lib/ Drupal/ Core/ Entity/ Form/ DeleteMultipleForm.php, line 112
Class
- DeleteMultipleForm
- Provides an entities deletion confirmation form.
Namespace
Drupal\Core\Entity\FormCode
public function getFormId() {
// Get entity type ID from the route because ::buildForm has not yet been
// called.
$entity_type_id = $this
->getRouteMatch()
->getParameter('entity_type_id');
return $entity_type_id . '_delete_multiple_confirm_form';
}