protected FeedDeleteForm::getDeletionMessage()
Overrides ContentEntityDeleteForm::getDeletionMessage
File
- core/modules/aggregator/src/Form/FeedDeleteForm.php, line 30
Class
- FeedDeleteForm
- Provides a form for deleting a feed.
Namespace
Drupal\aggregator\Form
Code
1 2 3 4 5 | protected function getDeletionMessage() { return $this ->t( 'The feed %label has been deleted.' , array ( '%label' => $this ->entity->label(), )); } |
Please login to continue.