You are here

public function ImageAPIOptimizePipelineFlushForm::getDescription in Image Optimize (or ImageAPI Optimize) 8.3

Same name and namespace in other branches
  1. 8.2 src/Form/ImageAPIOptimizePipelineFlushForm.php \Drupal\imageapi_optimize\Form\ImageAPIOptimizePipelineFlushForm::getDescription()
  2. 4.x src/Form/ImageAPIOptimizePipelineFlushForm.php \Drupal\imageapi_optimize\Form\ImageAPIOptimizePipelineFlushForm::getDescription()

Returns additional text to display as a description.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The form description.

Overrides EntityConfirmFormBase::getDescription

File

src/Form/ImageAPIOptimizePipelineFlushForm.php, line 23

Class

ImageAPIOptimizePipelineFlushForm
Form controller for image optimize pipeline flush.

Namespace

Drupal\imageapi_optimize\Form

Code

public function getDescription() {
  return $this
    ->t('This operation does not change the original images but the copies created for this pipeline will be recreated.');
}