public function ImageStyleDeleteForm::getDescription in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/image/src/Form/ImageStyleDeleteForm.php \Drupal\image\Form\ImageStyleDeleteForm::getDescription()
Returns additional text to display as a description.
Return value
string The form description.
Overrides EntityConfirmFormBase::getDescription
File
- core/
modules/ image/ src/ Form/ ImageStyleDeleteForm.php, line 27 - Contains \Drupal\image\Form\ImageStyleDeleteForm.
Class
- ImageStyleDeleteForm
- Creates a form to delete an image style.
Namespace
Drupal\image\FormCode
public function getDescription() {
return $this
->t('If this style is in use on the site, you may select another style to replace it. All images that have been generated for this style will be permanently deleted.');
}