Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
33 | public function process(array $parent): string |
||
34 | { |
||
35 | $preset = $parent['parameters']['preset']; |
||
36 | |||
37 | $message = LocalizationService::localize('Notification/Entity:field.rte.ck_editor_preset_missing', [$preset]); |
||
38 | $message = StringService::mark($message, '<code>$1</code>'); |
||
39 | |||
40 | return '<span class="bg-danger">' . $message . '</span>'; |
||
41 | } |
||
43 |