| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 65 | public static function contentHtml(): string |
||
| 66 | { |
||
| 67 | $imageProcessors = ImageOptimize::$plugin->optimize->getActiveImageProcessors(); |
||
| 68 | $variantCreators = ImageOptimize::$plugin->optimize->getActiveVariantCreators(); |
||
| 69 | |||
| 70 | return Craft::$app->getView()->renderTemplate( |
||
| 71 | 'image-optimize/_components/utilities/ImageOptimizeUtility_content', |
||
| 72 | [ |
||
| 73 | 'imageProcessors' => $imageProcessors, |
||
| 74 | 'variantCreators' => $variantCreators, |
||
| 75 | ] |
||
| 79 |