function BlockDeleteForm::getDeletionMessage

Same name and namespace in other branches
  1. 9 core/modules/block/src/Form/BlockDeleteForm.php \Drupal\block\Form\BlockDeleteForm::getDeletionMessage()
  2. 10 core/modules/block/src/Form/BlockDeleteForm.php \Drupal\block\Form\BlockDeleteForm::getDeletionMessage()
  3. 11.x core/modules/block/src/Form/BlockDeleteForm.php \Drupal\block\Form\BlockDeleteForm::getDeletionMessage()

Gets the message to display to the user after deleting the entity.

Return value

string The translated string of the deletion message.

Overrides EntityDeleteFormTrait::getDeletionMessage

File

core/modules/block/src/Form/BlockDeleteForm.php, line 42

Class

BlockDeleteForm
Provides a deletion confirmation form for the block instance deletion form.

Namespace

Drupal\block\Form

Code

protected function getDeletionMessage() {
  $entity = $this->getEntity();
  return $this->t('The @entity-type %label has been removed.', [
    '@entity-type' => $entity->getEntityType()
      ->getSingularLabel(),
    '%label' => $entity->label(),
  ]);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.