You are here

public function ContributorCategoryDeleteForm::getQuestion in Bibliography & Citation 2.0.x

Same name and namespace in other branches
  1. 8 modules/bibcite_entity/src/Form/ContributorCategoryDeleteForm.php \Drupal\bibcite_entity\Form\ContributorCategoryDeleteForm::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/ContributorCategoryDeleteForm.php, line 44

Class

ContributorCategoryDeleteForm
Builds the form to delete Contributor category entities.

Namespace

Drupal\bibcite_entity\Form

Code

public function getQuestion() {
  if (!$this->inUse) {
    return $this
      ->t('Are you sure you want to delete %name?', [
      '%name' => $this->entity
        ->label(),
    ]);
  }
  else {
    return $this
      ->t('Category %name used in reference(s) and cannot be deleted.', [
      '%name' => $this->entity
        ->label(),
    ]);
  }
}