| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 66 | public static function contentHtml(): string |
||
| 67 | { |
||
| 68 | Craft::$app->getView()->registerAssetBundle(ImageOptimizeUtilityAsset::class); |
||
| 69 | |||
| 70 | $someVar = 'Have a nice day!'; |
||
| 71 | return Craft::$app->getView()->renderTemplate( |
||
| 72 | 'image-optimize/_components/utilities/ImageOptimizeUtility_content', |
||
| 73 | [ |
||
| 74 | 'someVar' => $someVar |
||
| 75 | ] |
||
| 79 |