public function ConditionDeleteForm::getQuestion in Context 8
Same name and namespace in other branches
- 8.4 modules/context_ui/src/Form/ConditionDeleteForm.php \Drupal\context_ui\Form\ConditionDeleteForm::getQuestion()
- 8.0 modules/context_ui/src/Form/ConditionDeleteForm.php \Drupal\context_ui\Form\ConditionDeleteForm::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/
context_ui/ src/ Form/ ConditionDeleteForm.php, line 65
Class
Namespace
Drupal\context_ui\FormCode
public function getQuestion() {
return $this
->t('Are you sure you want to delete the %label condition?', [
'%label' => $this->condition
->getPluginDefinition()['label'],
]);
}