protected function BreakLockForm::getQuestion

Implements \Drupal\Core\Form\ConfirmFormBase::getQuestion().

Overrides ConfirmFormBase::getQuestion

File

drupal/core/modules/views_ui/lib/Drupal/views_ui/Form/BreakLockForm.php, line 77
Contains \Drupal\views_ui\Form\BreakLockForm.

Class

BreakLockForm
Builds the form to break the lock of an edited view.

Namespace

Drupal\views_ui\Form

Code

protected function getQuestion() {
  return t('Do you want to break the lock on view %name?', array(
    '%name' => $this->view
      ->id(),
  ));
}