function ImageEffectDeleteForm::getQuestion
Same name in other branches
- 8.9.x core/modules/image/src/Form/ImageEffectDeleteForm.php \Drupal\image\Form\ImageEffectDeleteForm::getQuestion()
- 10 core/modules/image/src/Form/ImageEffectDeleteForm.php \Drupal\image\Form\ImageEffectDeleteForm::getQuestion()
- 11.x core/modules/image/src/Form/ImageEffectDeleteForm.php \Drupal\image\Form\ImageEffectDeleteForm::getQuestion()
Overrides ConfirmFormInterface::getQuestion
File
-
core/
modules/ image/ src/ Form/ ImageEffectDeleteForm.php, line 33
Class
- ImageEffectDeleteForm
- Form for deleting an image effect.
Namespace
Drupal\image\FormCode
public function getQuestion() {
return $this->t('Are you sure you want to delete the @effect effect from the %style style?', [
'%style' => $this->imageStyle
->label(),
'@effect' => $this->imageEffect
->label(),
]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.