public function ContributorRoleDeleteForm::getQuestion in Bibliography & Citation 8
Same name and namespace in other branches
- 2.0.x modules/bibcite_entity/src/Form/ContributorRoleDeleteForm.php \Drupal\bibcite_entity\Form\ContributorRoleDeleteForm::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/ ContributorRoleDeleteForm.php, line 44
Class
- ContributorRoleDeleteForm
- Builds the form to delete Contributor role entities.
Namespace
Drupal\bibcite_entity\FormCode
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('Role %name used in reference(s) and cannot be deleted.', [
'%name' => $this->entity
->label(),
]);
}
}