You are here

public function ConfirmBanDeleteMultiple::getQuestion in Comment IP 8

Returns the question to ask the user.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The form question. The page title will be set to this value.

Overrides ConfirmDeleteMultiple::getQuestion

File

src/Form/ConfirmBanDeleteMultiple.php, line 25

Class

ConfirmBanDeleteMultiple
Provides the comment_ip multiple ban delete confirmation form.

Namespace

Drupal\comment_ip\Form

Code

public function getQuestion() {
  return $this
    ->t('Are you sure you want to delete these comments, their children, and ban the following IP addresses?');
}