| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 51 | public function init(): void |
||
| 52 | { |
||
| 53 | parent::init(); |
||
| 54 | self::$plugin = $this; |
||
| 55 | |||
| 56 | Craft::$app->view->registerTwigExtension(new EmptyCoalesceTwigExtension()); |
||
| 57 | |||
| 58 | Craft::info( |
||
| 59 | Craft::t( |
||
| 60 | 'empty-coalesce', |
||
| 61 | '{name} plugin loaded', |
||
| 62 | ['name' => $this->name] |
||
| 63 | ), |
||
| 64 | __METHOD__ |
||
| 65 | ); |
||
| 68 |