| Total Complexity | 3 | 
| Total Lines | 20 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 9 | class Gmap extends AbstractUiElement  | 
            ||
| 10 | { | 
            ||
| 11 | protected $type = 'gmap';  | 
            ||
| 12 | |||
| 13 | // We have an image for our element, if you don't specify it, we will use a default one  | 
            ||
| 14 | public function getImage(): string  | 
            ||
| 15 |     { | 
            ||
| 16 | return '/bundles/monsieurbizsyliusricheditorplugin/images/ui_elements/gmap.png';  | 
            ||
| 17 | }  | 
            ||
| 18 | |||
| 19 | public function getFields(): array  | 
            ||
| 20 |     { | 
            ||
| 21 | return [  | 
            ||
| 22 | 'gmap_link',  | 
            ||
| 23 | ];  | 
            ||
| 24 | }  | 
            ||
| 25 | |||
| 26 | public function getFormClass(): string  | 
            ||
| 29 | }  | 
            ||
| 30 | }  | 
            ||
| 31 |