function Image::prepareViewDisplay

Same name and namespace in other branches
  1. 8.9.x core/modules/media/src/Plugin/media/Source/Image.php \Drupal\media\Plugin\media\Source\Image::prepareViewDisplay()
  2. 10 core/modules/media/src/Plugin/media/Source/Image.php \Drupal\media\Plugin\media\Source\Image::prepareViewDisplay()
  3. 11.x core/modules/media/src/Plugin/media/Source/Image.php \Drupal\media\Plugin\media\Source\Image::prepareViewDisplay()

Overrides MediaSourceBase::prepareViewDisplay

File

core/modules/media/src/Plugin/media/Source/Image.php, line 169

Class

Image
Image entity media source.

Namespace

Drupal\media\Plugin\media\Source

Code

public function prepareViewDisplay(MediaTypeInterface $type, EntityViewDisplayInterface $display) {
    parent::prepareViewDisplay($type, $display);
    // Use the `large` image style and do not link the image to anything.
    // This will prevent the out-of-the-box configuration from outputting very
    // large raw images. If the `large` image style has been deleted, do not
    // set an image style.
    $field_name = $this->getSourceFieldDefinition($type)
        ->getName();
    $component = $display->getComponent($field_name);
    $component['settings']['image_link'] = '';
    $component['settings']['image_style'] = '';
    if ($this->entityTypeManager
        ->getStorage('image_style')
        ->load('large')) {
        $component['settings']['image_style'] = 'large';
    }
    $display->setComponent($field_name, $component);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.