You are here

public function ScaleAndCropImageEffect::getSummary in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/image/src/Plugin/ImageEffect/ScaleAndCropImageEffect.php \Drupal\image\Plugin\ImageEffect\ScaleAndCropImageEffect::getSummary()
  2. 9 core/modules/image/src/Plugin/ImageEffect/ScaleAndCropImageEffect.php \Drupal\image\Plugin\ImageEffect\ScaleAndCropImageEffect::getSummary()

File

core/modules/image/src/Plugin/ImageEffect/ScaleAndCropImageEffect.php, line 40

Class

ScaleAndCropImageEffect
Scales and crops an image resource.

Namespace

Drupal\image\Plugin\ImageEffect

Code

public function getSummary() {
  $summary = [
    '#theme' => 'image_scale_and_crop_summary',
    '#data' => $this->configuration,
  ];
  $summary += parent::getSummary();
  return $summary;
}