Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
37 | private function getMapHtml(): string { |
||
38 | return $this->wrapHtmlInThumbDivs( |
||
39 | Html::rawElement( |
||
40 | 'div', |
||
41 | [ |
||
42 | 'id' => 'GeoJsonMap', |
||
43 | 'style' => "width: 100%; height: 600px; background-color: #eeeeee; overflow: hidden;", |
||
44 | 'class' => 'maps-map maps-leaflet GeoJsonMap' |
||
45 | ], |
||
46 | wfMessage( 'maps-loading-map' )->inContentLanguage()->escaped() |
||
47 | ) |
||
48 | ); |
||
49 | } |
||
50 | |||
68 |