You are here

protected function MenuLinkContentDeleteForm::getDeletionMessage in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/menu_link_content/src/Form/MenuLinkContentDeleteForm.php \Drupal\menu_link_content\Form\MenuLinkContentDeleteForm::getDeletionMessage()

Overrides ContentEntityDeleteForm::getDeletionMessage

File

core/modules/menu_link_content/src/Form/MenuLinkContentDeleteForm.php, line 38
Contains \Drupal\menu_link_content\Form\MenuLinkContentDeleteForm.

Class

MenuLinkContentDeleteForm
Provides a delete form for content menu links.

Namespace

Drupal\menu_link_content\Form

Code

protected function getDeletionMessage() {
  return $this
    ->t('The menu link %title has been deleted.', array(
    '%title' => $this->entity
      ->label(),
  ));
}