protected NodeDeleteForm::getDeletionMessage()
Overrides ContentEntityDeleteForm::getDeletionMessage
File
- core/modules/node/src/Form/NodeDeleteForm.php, line 15
Class
- NodeDeleteForm
- Provides a form for deleting a node.
Namespace
Drupal\node\Form
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | protected function getDeletionMessage() { /** @var \Drupal\node\NodeInterface $entity */ $entity = $this ->getEntity(); $node_type_storage = $this ->entityManager->getStorage( 'node_type' ); $node_type = $node_type_storage ->load( $entity ->bundle())->label(); if (! $entity ->isDefaultTranslation()) { return $this ->t( '@language translation of the @type %label has been deleted.' , [ '@language' => $entity ->language()->getName(), '@type' => $node_type , '%label' => $entity ->label(), ]); } return $this ->t( 'The @type %title has been deleted.' , array ( '@type' => $node_type , '%title' => $this ->getEntity()->label(), )); } |
Please login to continue.