public ImageStyleDeleteForm::getQuestion()
Returns the question to ask the user.
Return value
string The form question. The page title will be set to this value.
Overrides EntityDeleteFormTrait::getQuestion
File
- core/modules/image/src/Form/ImageStyleDeleteForm.php, line 23
Class
- ImageStyleDeleteForm
- Creates a form to delete an image style.
Namespace
Drupal\image\Form
Code
public function getQuestion() { return $this->t('Optionally select a style before deleting %style', array('%style' => $this->entity->label())); }
Please login to continue.