public function ActionDeleteForm::getQuestion in Business Rules 8
Same name and namespace in other branches
- 2.x src/Form/ActionDeleteForm.php \Drupal\business_rules\Form\ActionDeleteForm::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/ ActionDeleteForm.php, line 17
Class
- ActionDeleteForm
- Builds the form to delete Action entities.
Namespace
Drupal\business_rules\FormCode
public function getQuestion() {
return $this
->t('Are you sure you want to delete %name action? All references to action item will be removed as well.', [
'%name' => $this->entity
->label(),
]);
}