protected function PictureMappingActionConfirmForm::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/picture/lib/Drupal/picture/Form/PictureMappingActionConfirmForm.php, line 25
Contains \Drupal\picture\Form\PictureMappingActionConfirm.

Class

PictureMappingActionConfirmForm

Namespace

Drupal\picture\Form

Code

protected function getQuestion() {
  return t('Are you sure you want to delete the picture_mapping %title?', array(
    '%title' => $this->pictureMapping
      ->label(),
  ));
}