You are here

protected function WebformSubmissionBulkForm::emptySelectedMessage in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/Plugin/views/field/WebformSubmissionBulkForm.php \Drupal\webform\Plugin\views\field\WebformSubmissionBulkForm::emptySelectedMessage()

Returns the message to be displayed when there are no selected items.

Return value

string Message displayed when no items are selected.

Overrides BulkForm::emptySelectedMessage

File

src/Plugin/views/field/WebformSubmissionBulkForm.php, line 17

Class

WebformSubmissionBulkForm
Defines a webform submission operations bulk form element.

Namespace

Drupal\webform\Plugin\views\field

Code

protected function emptySelectedMessage() {
  return $this
    ->t('No submission selected.');
}