You are here

public function VariableDeleteForm::getQuestion in Business Rules 8

Same name and namespace in other branches
  1. 2.x src/Form/VariableDeleteForm.php \Drupal\business_rules\Form\VariableDeleteForm::getQuestion()

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 ConfirmFormInterface::getQuestion

File

src/Form/VariableDeleteForm.php, line 17

Class

VariableDeleteForm
Builds the form to delete Variable entities.

Namespace

Drupal\business_rules\Form

Code

public function getQuestion() {
  return $this
    ->t('Are you sure you want to delete %name? You will need to manually remove the variable references.', [
    '%name' => $this->entity
      ->label(),
  ]);
}