protected function BanDelete::getQuestion

Returns the question to ask the user.

Return value

string The form question. The page title will be set to this value.

Overrides ConfirmFormBase::getQuestion

File

drupal/core/modules/ban/lib/Drupal/ban/Form/BanDelete.php, line 56
Contains \Drupal\ban\Form\BanDelete.

Class

BanDelete
Provides a form to unban IP addresses.

Namespace

Drupal\ban\Form

Code

protected function getQuestion() {
  return t('Are you sure you want to unblock %ip?', array(
    '%ip' => $this->banIp,
  ));
}