Total Complexity | 78 |
Total Lines | 811 |
Duplicated Lines | 0 % |
Changes | 11 | ||
Bugs | 0 | Features | 0 |
Complex classes like OptimizedImage often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use OptimizedImage, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
27 | class OptimizedImage extends Model |
||
28 | { |
||
29 | // Public Properties |
||
30 | // ========================================================================= |
||
31 | |||
32 | /** |
||
33 | * @var string[] An array of optimized image variant URLs |
||
34 | */ |
||
35 | public $optimizedImageUrls = []; |
||
36 | |||
37 | /** |
||
38 | * @var string[] An array of optimized .webp image variant URLs |
||
39 | */ |
||
40 | public $optimizedWebPImageUrls = []; |
||
41 | |||
42 | /** |
||
43 | * @var int[] An array of the widths of the optimized image variants |
||
44 | */ |
||
45 | public $variantSourceWidths = []; |
||
46 | |||
47 | /** |
||
48 | * @var int[] An array of the heights of the optimized image variants |
||
49 | */ |
||
50 | public $variantHeights = []; |
||
51 | |||
52 | /** |
||
53 | * @var float[] An array of the x,y image focal point coords, ranging from 0.0 to 1.0 |
||
54 | */ |
||
55 | public $focalPoint; |
||
56 | |||
57 | /** |
||
58 | * @var int The width of the original source image |
||
59 | */ |
||
60 | public $originalImageWidth; |
||
61 | |||
62 | /** |
||
63 | * @var int The height of the original source image |
||
64 | */ |
||
65 | public $originalImageHeight; |
||
66 | |||
67 | /** |
||
68 | * @var string The base64 encoded placeholder LQIP image |
||
69 | */ |
||
70 | public $placeholder = ''; |
||
71 | |||
72 | /** |
||
73 | * @var string The base64 encoded placeholder LQIP SVG image |
||
74 | */ |
||
75 | public $placeholderSvg = ''; |
||
76 | |||
77 | /** |
||
78 | * @var string[] An array the 5 most dominant colors in the image |
||
79 | */ |
||
80 | public $colorPalette = []; |
||
81 | |||
82 | /** |
||
83 | * @var int The overall lightness of the image, from 0..100 |
||
84 | */ |
||
85 | public $lightness; |
||
86 | |||
87 | /** |
||
88 | * @var int The width of the placeholder image |
||
89 | */ |
||
90 | public $placeholderWidth; |
||
91 | |||
92 | /** |
||
93 | * @var int The height of the placeholder image |
||
94 | */ |
||
95 | public $placeholderHeight; |
||
96 | |||
97 | /** |
||
98 | * @var string[] An array of errors logged when generating the image transforms |
||
99 | */ |
||
100 | public $stickyErrors = []; |
||
101 | |||
102 | // Public Methods |
||
103 | // ========================================================================= |
||
104 | |||
105 | /** |
||
106 | * @inheritdoc |
||
107 | */ |
||
108 | public function rules(): array |
||
109 | { |
||
110 | return [ |
||
111 | ['optimizedImageUrls', ArrayValidator::class], |
||
112 | ['optimizedWebPImageUrls', ArrayValidator::class], |
||
113 | ['variantSourceWidths', ArrayValidator::class], |
||
114 | ['variantHeights', ArrayValidator::class], |
||
115 | ['focalPoint', 'safe'], |
||
116 | ['originalImageWidth', 'integer'], |
||
117 | ['originalImageHeight', 'integer'], |
||
118 | ['placeholder', 'string'], |
||
119 | ['placeholderSvg', 'string'], |
||
120 | ['colorPalette', ArrayValidator::class], |
||
121 | ['placeholderWidth', 'integer'], |
||
122 | ['placeholderHeight', 'integer'], |
||
123 | ['stickyErrors', ArrayValidator::class], |
||
124 | ]; |
||
125 | } |
||
126 | |||
127 | /** |
||
128 | * Return the first image variant URL or the specific one passed in via |
||
129 | * $width |
||
130 | * |
||
131 | * @param int $width |
||
132 | * |
||
133 | * @return \Twig\Markup|null |
||
134 | */ |
||
135 | public function src(int $width = 0): string |
||
136 | { |
||
137 | if (empty($width)) { |
||
138 | return Template::raw(reset($this->optimizedImageUrls)); |
||
139 | } |
||
140 | |||
141 | return Template::raw($this->optimizedImageUrls[$width] ?? ''); |
||
142 | } |
||
143 | |||
144 | /** |
||
145 | * Getter for CraftQL |
||
146 | * |
||
147 | * @param int $width |
||
148 | * |
||
149 | * @return null|string|\Twig\Markup |
||
150 | */ |
||
151 | public function getSrc(int $width = 0): string |
||
152 | { |
||
153 | return $this->src($width); |
||
154 | } |
||
155 | |||
156 | /** |
||
157 | * Return a string of image URLs and their sizes |
||
158 | * |
||
159 | * @param bool $dpr Whether to generate 1x, 2x srcsets vs the normal XXXw |
||
160 | * srcsets |
||
161 | * |
||
162 | * @return \Twig\Markup|null |
||
163 | */ |
||
164 | public function srcset(bool $dpr = false): string |
||
165 | { |
||
166 | return Template::raw($this->getSrcsetFromArray($this->optimizedImageUrls, $dpr)); |
||
167 | } |
||
168 | |||
169 | /** |
||
170 | * Getter for CraftQL |
||
171 | * |
||
172 | * @param bool $dpr |
||
173 | * |
||
174 | * @return string |
||
175 | */ |
||
176 | public function getSrcset(bool $dpr = false): string |
||
177 | { |
||
178 | return $this->srcset($dpr); |
||
179 | } |
||
180 | /** |
||
181 | * Return a string of image URLs and their sizes that match $width |
||
182 | * |
||
183 | * @param int $width |
||
184 | * @param bool $dpr Whether to generate 1x, 2x srcsets vs the normal XXXw |
||
185 | * srcsets |
||
186 | * |
||
187 | * @return \Twig\Markup|null |
||
188 | */ |
||
189 | public function srcsetWidth(int $width, bool $dpr = false): string |
||
190 | { |
||
191 | $subset = $this->getSrcsetSubsetArray($this->optimizedImageUrls, $width, 'width'); |
||
192 | |||
193 | return Template::raw($this->getSrcsetFromArray($subset, $dpr)); |
||
194 | } |
||
195 | |||
196 | /** |
||
197 | * Return a string of image URLs and their sizes that are at least $width |
||
198 | * or larger |
||
199 | * |
||
200 | * @param int $width |
||
201 | * @param bool $dpr Whether to generate 1x, 2x srcsets vs the normal XXXw |
||
202 | * srcsets |
||
203 | * |
||
204 | * @return \Twig\Markup|null |
||
205 | */ |
||
206 | public function srcsetMinWidth(int $width, bool $dpr = false): string |
||
207 | { |
||
208 | $subset = $this->getSrcsetSubsetArray($this->optimizedImageUrls, $width, 'minwidth'); |
||
209 | |||
210 | return Template::raw($this->getSrcsetFromArray($subset, $dpr)); |
||
211 | } |
||
212 | |||
213 | /** |
||
214 | * Return a string of image URLs and their sizes that are $width or smaller |
||
215 | * |
||
216 | * @param int $width |
||
217 | * @param bool $dpr Whether to generate 1x, 2x srcsets vs the normal XXXw |
||
218 | * srcsets |
||
219 | * |
||
220 | * @return \Twig\Markup|null |
||
221 | */ |
||
222 | public function srcsetMaxWidth(int $width, bool $dpr = false): string |
||
223 | { |
||
224 | $subset = $this->getSrcsetSubsetArray($this->optimizedImageUrls, $width, 'maxwidth'); |
||
225 | |||
226 | return Template::raw($this->getSrcsetFromArray($subset, $dpr)); |
||
227 | } |
||
228 | |||
229 | /** |
||
230 | * Return the first webp image variant URL or the specific one passed in |
||
231 | * via $width |
||
232 | * |
||
233 | * @param int $width |
||
234 | * |
||
235 | * @return \Twig\Markup|null |
||
236 | */ |
||
237 | public function srcWebp(int $width = 0): string |
||
238 | { |
||
239 | if (empty($width)) { |
||
240 | return Template::raw(reset($this->optimizedWebPImageUrls)); |
||
241 | } |
||
242 | |||
243 | return Template::raw($this->optimizedWebPImageUrls[$width] ?? ''); |
||
244 | } |
||
245 | |||
246 | /** |
||
247 | * Getter for CraftQL |
||
248 | * |
||
249 | * @param int $width |
||
250 | * |
||
251 | * @return string |
||
252 | */ |
||
253 | public function getSrcWebp(int $width = 0): string |
||
254 | { |
||
255 | return $this->srcWebp($width); |
||
256 | } |
||
257 | |||
258 | /** |
||
259 | * Return a string of webp image URLs and their sizes |
||
260 | * |
||
261 | * @param bool $dpr Whether to generate 1x, 2x srcsets vs the normal XXXw |
||
262 | * srcsets |
||
263 | * |
||
264 | * @return \Twig\Markup|null |
||
265 | */ |
||
266 | public function srcsetWebp(bool $dpr = false): string |
||
267 | { |
||
268 | return Template::raw($this->getSrcsetFromArray($this->optimizedWebPImageUrls, $dpr)); |
||
269 | } |
||
270 | |||
271 | /** |
||
272 | * Getter for CraftQL |
||
273 | * |
||
274 | * @param bool $dpr |
||
275 | * |
||
276 | * @return string |
||
277 | */ |
||
278 | public function getSrcsetWebp(bool $dpr = false): string |
||
279 | { |
||
280 | return $this->srcsetWebp($dpr); |
||
281 | } |
||
282 | |||
283 | /** |
||
284 | * Return a string of webp image URLs and their sizes that match $width |
||
285 | * |
||
286 | * @param int $width |
||
287 | * @param bool $dpr Whether to generate 1x, 2x srcsets vs the normal XXXw |
||
288 | * srcsets |
||
289 | * |
||
290 | * @return \Twig\Markup|null |
||
291 | */ |
||
292 | public function srcsetWidthWebp(int $width, bool $dpr = false): string |
||
293 | { |
||
294 | $subset = $this->getSrcsetSubsetArray($this->optimizedWebPImageUrls, $width, 'width'); |
||
295 | |||
296 | return Template::raw($this->getSrcsetFromArray($subset, $dpr)); |
||
297 | } |
||
298 | |||
299 | /** |
||
300 | * Return a string of webp image URLs and their sizes that are at least |
||
301 | * $width or larger |
||
302 | * |
||
303 | * @param int $width |
||
304 | * @param bool $dpr Whether to generate 1x, 2x srcsets vs the normal XXXw |
||
305 | * srcsets |
||
306 | * |
||
307 | * @return \Twig\Markup|null |
||
308 | */ |
||
309 | public function srcsetMinWidthWebp(int $width, bool $dpr = false): string |
||
310 | { |
||
311 | $subset = $this->getSrcsetSubsetArray($this->optimizedWebPImageUrls, $width, 'minwidth'); |
||
312 | |||
313 | return Template::raw($this->getSrcsetFromArray($subset, $dpr)); |
||
314 | } |
||
315 | |||
316 | /** |
||
317 | * Return a string of webp image URLs and their sizes that are $width or |
||
318 | * smaller |
||
319 | * |
||
320 | * @param int $width |
||
321 | * @param bool $dpr Whether to generate 1x, 2x srcsets vs the normal XXXw |
||
322 | * srcsets |
||
323 | * |
||
324 | * @return \Twig\Markup|null |
||
325 | */ |
||
326 | public function srcsetMaxWidthWebp(int $width, bool $dpr = false): string |
||
327 | { |
||
328 | $subset = $this->getSrcsetSubsetArray($this->optimizedWebPImageUrls, $width, 'maxwidth'); |
||
329 | |||
330 | return Template::raw($this->getSrcsetFromArray($subset, $dpr)); |
||
331 | } |
||
332 | |||
333 | /** |
||
334 | * Work around issues with `<img srcset>` returning sizes larger than are |
||
335 | * available as per: |
||
336 | * https://medium.com/@MRWwebDesign/responsive-images-the-sizes-attribute-and-unexpected-image-sizes-882a2eadb6db |
||
337 | * |
||
338 | * @return int |
||
339 | */ |
||
340 | public function maxSrcsetWidth(): int |
||
352 | } |
||
353 | |||
354 | /** |
||
355 | * Getter for CraftQL |
||
356 | * |
||
357 | * @return int |
||
358 | */ |
||
359 | public function getMaxSrcsetWidth(): int |
||
360 | { |
||
361 | return $this->maxSrcsetWidth(); |
||
362 | } |
||
363 | |||
364 | /** |
||
365 | * Return the colors as an array of RGB colors |
||
366 | */ |
||
367 | public function colorPaletteRgb(): array |
||
378 | } |
||
379 | |||
380 | /** |
||
381 | * Generate a complete <link rel="preload"> tag for this OptimizedImages model |
||
382 | * |
||
383 | * @param array $linkAttrs |
||
384 | * |
||
385 | * @return \Twig\Markup |
||
386 | */ |
||
387 | public function linkPreloadTag($linkAttrs = []) |
||
388 | { |
||
389 | // Any web browser that supports link rel="preload" as="image" also supports webp, so prefer that |
||
390 | $srcset = $this->optimizedImageUrls; |
||
391 | if (!empty($this->optimizedWebPImageUrls)) { |
||
392 | $srcset = $this->optimizedWebPImageUrls; |
||
393 | } |
||
394 | // Merge the passed in options with the tag attributes |
||
395 | $attrs = array_merge([ |
||
396 | 'rel' => 'preload', |
||
397 | 'as' => 'image', |
||
398 | 'href' => reset($srcset), |
||
399 | 'imagesrcset' => $this->getSrcsetFromArray($srcset), |
||
400 | 'imagesizes' => '100vw', |
||
401 | ], |
||
402 | $linkAttrs |
||
403 | ); |
||
404 | // Remove any empty attributes |
||
405 | $attrs = array_filter($attrs); |
||
406 | // Render the tag |
||
407 | $tag = Html::tag('link', '', $attrs); |
||
408 | |||
409 | return Template::raw($tag); |
||
410 | } |
||
411 | |||
412 | /** |
||
413 | * Generate a complete <img> tag for this OptimizedImages model |
||
414 | * |
||
415 | * @param false|string $lazyLoad |
||
416 | * @param array $imgAttrs |
||
417 | * |
||
418 | * @return \Twig\Markup |
||
419 | */ |
||
420 | public function imgTag($lazyLoad = false, $imgAttrs = []) |
||
445 | } |
||
446 | |||
447 | /** |
||
448 | * Generate a complete <picture> tag for this OptimizedImages model |
||
449 | * |
||
450 | * @param false $lazyLoad |
||
451 | * @param array $pictureAttrs |
||
452 | * @param array $srcsetAttrs |
||
453 | * @param array $imgAttrs |
||
454 | * |
||
455 | * @return \Twig\Markup |
||
456 | */ |
||
457 | public function pictureTag($lazyLoad = false, $pictureAttrs = [], $srcsetAttrs = [], $imgAttrs = []) |
||
528 | } |
||
529 | |||
530 | /** |
||
531 | * Return a base64-encoded placeholder image |
||
532 | * |
||
533 | * @return \Twig\Markup|null |
||
534 | */ |
||
535 | public function placeholderImage() |
||
536 | { |
||
537 | $header = 'data:image/jpeg;base64,'; |
||
538 | if (!empty($this->placeholder)) { |
||
539 | $content = $this->placeholder; |
||
540 | } else { |
||
541 | // At least return something |
||
542 | return $this->defaultPlaceholderImage(); |
||
543 | } |
||
544 | |||
545 | return Template::raw($header.rawurlencode($content)); |
||
546 | } |
||
547 | |||
548 | /** |
||
549 | * Getter for CraftQL |
||
550 | * |
||
551 | * @return string |
||
552 | */ |
||
553 | public function getPlaceholderImage(): string |
||
554 | { |
||
555 | return (string)$this->placeholderImage(); |
||
556 | } |
||
557 | |||
558 | /** |
||
559 | * @return string |
||
560 | */ |
||
561 | public function placeholderImageSize(): string |
||
562 | { |
||
563 | $placeholder = $this->placeholderImage(); |
||
564 | $contentLength = !empty(\strlen($placeholder)) ? \strlen($placeholder) : 0; |
||
565 | |||
566 | return ImageOptimize::$plugin->optimize->humanFileSize($contentLength, 1); |
||
567 | } |
||
568 | |||
569 | /** |
||
570 | * Return an SVG box as a placeholder image |
||
571 | * |
||
572 | * @param string|null $color |
||
573 | * |
||
574 | * @return \Twig\Markup|null |
||
575 | */ |
||
576 | public function placeholderBox(string $color = null) |
||
577 | { |
||
578 | $width = $this->placeholderWidth ?? 1; |
||
579 | $height = $this->placeholderHeight ?? 1; |
||
580 | $color = $color ?? $this->colorPalette[0] ?? '#CCC'; |
||
581 | |||
582 | return Template::raw(ImageOptimize::$plugin->placeholder->generatePlaceholderBox($width, $height, $color)); |
||
583 | } |
||
584 | |||
585 | /** |
||
586 | * @param string|null $color |
||
587 | * |
||
588 | * @return string |
||
589 | */ |
||
590 | public function getPlaceholderBox(string $color = null): string |
||
591 | { |
||
592 | return (string)$this->placeholderBox($color); |
||
593 | } |
||
594 | |||
595 | /** |
||
596 | * Getter for CraftQL |
||
597 | * |
||
598 | * @return string |
||
599 | */ |
||
600 | public function placeholderBoxSize(): string |
||
601 | { |
||
602 | $placeholder = $this->placeholderBox(); |
||
603 | $contentLength = !empty(\strlen($placeholder)) ? \strlen($placeholder) : 0; |
||
604 | |||
605 | return ImageOptimize::$plugin->optimize->humanFileSize($contentLength, 1); |
||
606 | } |
||
607 | |||
608 | /** |
||
609 | * Return a silhouette of the image as an SVG placeholder |
||
610 | * |
||
611 | * @return \Twig\Markup|null |
||
612 | */ |
||
613 | public function placeholderSilhouette() |
||
614 | { |
||
615 | $header = 'data:image/svg+xml,'; |
||
616 | if (!empty($this->placeholderSvg)) { |
||
617 | $content = $this->placeholderSvg; |
||
618 | } else { |
||
619 | // At least return something |
||
620 | return $this->defaultPlaceholderImage(); |
||
621 | } |
||
622 | |||
623 | return Template::raw($header.$content); |
||
624 | } |
||
625 | |||
626 | /** |
||
627 | * Getter for CraftQL |
||
628 | * |
||
629 | * @return string |
||
630 | */ |
||
631 | public function getPlaceholderSilhouette(): string |
||
632 | { |
||
633 | return (string)$this->placeholderSilhouette(); |
||
634 | } |
||
635 | |||
636 | /** |
||
637 | * @return string |
||
638 | */ |
||
639 | public function placeholderSilhouetteSize(): string |
||
640 | { |
||
641 | $placeholder = $this->placeholderSilhouette(); |
||
642 | $contentLength = !empty(\strlen($placeholder)) ? \strlen($placeholder) : 0; |
||
643 | |||
644 | return ImageOptimize::$plugin->optimize->humanFileSize($contentLength, 1); |
||
645 | } |
||
646 | |||
647 | /** |
||
648 | * Get the file size of any remote resource (using curl), |
||
649 | * either in bytes or - default - as human-readable formatted string. |
||
650 | * |
||
651 | * @author Stephan Schmitz <[email protected]> |
||
652 | * @license MIT <http://eyecatchup.mit-license.org/> |
||
653 | * @url <https://gist.github.com/eyecatchup/f26300ffd7e50a92bc4d> |
||
654 | * |
||
655 | * @param string $url Takes the remote object's URL. |
||
656 | * @param boolean $formatSize Whether to return size in bytes or |
||
657 | * formatted. |
||
658 | * @param boolean $useHead Whether to use HEAD requests. If false, |
||
659 | * uses GET. |
||
660 | * |
||
661 | * @return int|mixed|string Returns human-readable formatted size |
||
662 | * or size in bytes (default: formatted). |
||
663 | */ |
||
664 | public function getRemoteFileSize($url, $formatSize = true, $useHead = true) |
||
665 | { |
||
666 | // Get an absolute URL with protocol that curl will be happy with |
||
667 | $url = UrlHelper::absoluteUrlWithProtocol($url); |
||
668 | $ch = curl_init($url); |
||
669 | curl_setopt_array($ch, [ |
||
670 | CURLOPT_RETURNTRANSFER => 1, |
||
671 | CURLOPT_FOLLOWLOCATION => 1, |
||
672 | CURLOPT_SSL_VERIFYPEER => 0, |
||
673 | ]); |
||
674 | if ($useHead) { |
||
675 | curl_setopt($ch, CURLOPT_NOBODY, 1); |
||
676 | } |
||
677 | curl_exec($ch); |
||
678 | // content-length of download (in bytes), read from Content-Length: field |
||
679 | $contentLength = curl_getinfo($ch, CURLINFO_CONTENT_LENGTH_DOWNLOAD); |
||
680 | curl_close($ch); |
||
681 | // cannot retrieve file size, return "-1" |
||
682 | if (!$contentLength) { |
||
683 | return -1; |
||
684 | } |
||
685 | // return size in bytes |
||
686 | if (!$formatSize) { |
||
687 | return $contentLength; |
||
688 | } |
||
689 | |||
690 | return ImageOptimize::$plugin->optimize->humanFileSize($contentLength, 1); |
||
691 | } |
||
692 | |||
693 | // Protected Methods |
||
694 | // ========================================================================= |
||
695 | |||
696 | protected function getSrcsetSubsetArray(array $set, int $width, string $comparison): array |
||
697 | { |
||
698 | $subset = []; |
||
699 | $index = 0; |
||
700 | if (empty($this->variantSourceWidths)) { |
||
701 | return $subset; |
||
702 | } |
||
703 | foreach ($this->variantSourceWidths as $variantSourceWidth) { |
||
704 | $match = false; |
||
705 | switch ($comparison) { |
||
706 | case 'width': |
||
707 | if ($variantSourceWidth == $width) { |
||
708 | $match = true; |
||
709 | } |
||
710 | break; |
||
711 | |||
712 | case 'minwidth': |
||
713 | if ($variantSourceWidth >= $width) { |
||
714 | $match = true; |
||
715 | } |
||
716 | break; |
||
717 | |||
718 | case 'maxwidth': |
||
719 | if ($variantSourceWidth <= $width) { |
||
720 | $match = true; |
||
721 | } |
||
722 | break; |
||
723 | } |
||
724 | if ($match) { |
||
725 | $subset += array_slice($set, $index, 1, true); |
||
726 | } |
||
727 | $index++; |
||
728 | } |
||
729 | |||
730 | return $subset; |
||
731 | } |
||
732 | |||
733 | /** |
||
734 | * @param array $array |
||
735 | * @param bool $dpr |
||
736 | * |
||
737 | * @return string |
||
738 | */ |
||
739 | protected function getSrcsetFromArray(array $array, bool $dpr = false): string |
||
740 | { |
||
741 | $srcset = ''; |
||
742 | foreach ($array as $key => $value) { |
||
743 | if ($dpr) { |
||
744 | $descriptor = '1x'; |
||
745 | if (!empty($array[(int)$key / 2])) { |
||
746 | $descriptor = '2x'; |
||
747 | } |
||
748 | if (!empty($array[(int)$key / 3])) { |
||
749 | $descriptor = '3x'; |
||
750 | } |
||
751 | } else { |
||
752 | $descriptor = $key.'w'; |
||
753 | } |
||
754 | $srcset .= $value.' '.$descriptor.', '; |
||
755 | } |
||
756 | $srcset = rtrim($srcset, ', '); |
||
757 | |||
758 | return $srcset; |
||
759 | } |
||
760 | |||
761 | /** |
||
762 | * Return a default placeholder image |
||
763 | * |
||
764 | * @return \Twig\Markup |
||
765 | */ |
||
766 | protected function defaultPlaceholderImage(): \Twig\Markup |
||
767 | { |
||
768 | $width = 1; |
||
769 | $height = 1; |
||
770 | $color = '#CCC'; |
||
771 | |||
772 | return Template::raw(ImageOptimize::$plugin->placeholder->generatePlaceholderBox($width, $height, $color)); |
||
773 | } |
||
774 | |||
775 | /** |
||
776 | * Swap the tag attributes to work with lazy loading |
||
777 | * |
||
778 | * @param array $attrs |
||
779 | * @param string $lazyLoad |
||
780 | * @return array |
||
781 | */ |
||
782 | protected function swapLazyLoadAttrs(string $lazyLoad, array $attrs): array |
||
806 | } |
||
807 | |||
808 | /** |
||
809 | * Return a lazy loading placeholder image based on the passed in $lazyload setting |
||
810 | * |
||
811 | * @param string $lazyLoad |
||
812 | * @param array $attrs |
||
813 | * |
||
814 | * @return array |
||
815 | */ |
||
816 | protected function getLazyLoadSrc(string $lazyLoad): string |
||
838 | } |
||
839 | } |
||
840 |