You are here

public function ReferenceTypeDeleteForm::getQuestion in Bibliography & Citation 8

Same name and namespace in other branches
  1. 2.0.x modules/bibcite_entity/src/Form/ReferenceTypeDeleteForm.php \Drupal\bibcite_entity\Form\ReferenceTypeDeleteForm::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

modules/bibcite_entity/src/Form/ReferenceTypeDeleteForm.php, line 17

Class

ReferenceTypeDeleteForm
Builds the form to delete Reference type entities.

Namespace

Drupal\bibcite_entity\Form

Code

public function getQuestion() {
  return $this
    ->t('Are you sure you want to delete %name?', [
    '%name' => $this->entity
      ->label(),
  ]);
}