function BreakLockForm::getQuestion

Overrides ConfirmFormInterface::getQuestion

File

src/Form/BreakLockForm.php, line 66

Class

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

Namespace

Drupal\rules\Form

Code

public function getQuestion() {
    return $this->t('Do you want to break the lock on %label?', [
        '%label' => $this->rulesUiHandler
            ->getComponentLabel(),
    ]);
}