public function DeleteForm::getQuestion in Zircon Profile 8
Same name in this branch
- 8 core/modules/path/src/Form/DeleteForm.php \Drupal\path\Form\DeleteForm::getQuestion()
- 8 core/modules/forum/src/Form/DeleteForm.php \Drupal\forum\Form\DeleteForm::getQuestion()
Same name and namespace in other branches
- 8.0 core/modules/forum/src/Form/DeleteForm.php \Drupal\forum\Form\DeleteForm::getQuestion()
Returns the question to ask the user.
Return value
string The form question. The page title will be set to this value.
Overrides ConfirmFormInterface::getQuestion
File
- core/
modules/ forum/ src/ Form/ DeleteForm.php, line 37 - Contains \Drupal\forum\Form\DeleteForm.
Class
- DeleteForm
- Builds the form to delete a forum term.
Namespace
Drupal\forum\FormCode
public function getQuestion() {
return $this
->t('Are you sure you want to delete the forum %label?', array(
'%label' => $this->taxonomyTerm
->label(),
));
}