protected static ImageStyle::replaceImageStyle(ImageStyleInterface $style)
Update field settings if the image style name is changed.
Parameters
\Drupal\image\ImageStyleInterface $style: The image style.
File
- core/modules/image/src/Entity/ImageStyle.php, line 136
Class
- ImageStyle
- Defines an image style configuration entity.
Namespace
Drupal\image\Entity
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | protected static function replaceImageStyle(ImageStyleInterface $style ) { if ( $style ->id() != $style ->getOriginalId()) { // Loop through all entity displays looking for formatters / widgets using // the image style. foreach (EntityViewDisplay::loadMultiple() as $display ) { foreach ( $display ->getComponents() as $name => $options ) { if (isset( $options [ 'type' ]) && $options [ 'type' ] == 'image' && $options [ 'settings' ][ 'image_style' ] == $style ->getOriginalId()) { $options [ 'settings' ][ 'image_style' ] = $style ->id(); $display ->setComponent( $name , $options ) ->save(); } } } foreach (EntityViewDisplay::loadMultiple() as $display ) { foreach ( $display ->getComponents() as $name => $options ) { if (isset( $options [ 'type' ]) && $options [ 'type' ] == 'image_image' && $options [ 'settings' ][ 'preview_image_style' ] == $style ->getOriginalId()) { $options [ 'settings' ][ 'preview_image_style' ] = $style ->id(); $display ->setComponent( $name , $options ) ->save(); } } } } } |
Please login to continue.