public FeedItemsDeleteForm::getConfirmText()
Returns a caption for the button that confirms the action.
Return value
string The form confirmation text.
Overrides ContentEntityConfirmFormBase::getConfirmText
File
- core/modules/aggregator/src/Form/FeedItemsDeleteForm.php, line 31
Class
- FeedItemsDeleteForm
- Provides a deletion confirmation form for items that belong to a feed.
Namespace
Drupal\aggregator\Form
Code
1 2 3 | public function getConfirmText() { return $this ->t( 'Delete items' ); } |
Please login to continue.