public ImageStyleFlushForm::getDescription()
Returns additional text to display as a description.
Return value
string The form description.
Overrides EntityConfirmFormBase::getDescription
File
- core/modules/image/src/Form/ImageStyleFlushForm.php, line 23
Class
- ImageStyleFlushForm
- Form controller for image style flush.
Namespace
Drupal\image\Form
Code
1 2 3 | public function getDescription() { return $this ->t( 'This operation does not change the original images but the copies created for this style will be recreated.' ); } |
Please login to continue.