Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/Form/DeleteMultipleForm.php \Drupal\Core\Entity\Form\DeleteMultipleForm::getFormId()
  2. 9 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\Form

Code

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';
}