@@ -123,16 +123,16 @@ |
||
123 | 123 | foreach ($this->cropImageStyles as $image_style) { |
124 | 124 | /** @var \Drupal\image\ImageEffectInterface $effect */ |
125 | 125 | foreach ($image_style->getEffects() as $effect) { |
126 | - if (isset($effect->getConfiguration()['data']['crop_type'])) { |
|
127 | - $crop_type = $effect->getConfiguration()['data']['crop_type']; |
|
128 | - if ($crop_type == $entity->id()) { |
|
129 | - // Add two image styles into the usage list. |
|
130 | - if (count($image_styles) < 2) { |
|
131 | - $usage[] = $image_style->link(); |
|
132 | - } |
|
133 | - $image_styles[] = $image_style; |
|
134 | - } |
|
135 | - } |
|
126 | + if (isset($effect->getConfiguration()['data']['crop_type'])) { |
|
127 | + $crop_type = $effect->getConfiguration()['data']['crop_type']; |
|
128 | + if ($crop_type == $entity->id()) { |
|
129 | + // Add two image styles into the usage list. |
|
130 | + if (count($image_styles) < 2) { |
|
131 | + $usage[] = $image_style->link(); |
|
132 | + } |
|
133 | + $image_styles[] = $image_style; |
|
134 | + } |
|
135 | + } |
|
136 | 136 | } |
137 | 137 | } |
138 | 138 |