Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
47 | private function getHtml(): string { |
||
48 | return $this->wrapHtmlInThumbDivs( |
||
49 | Html::rawElement( |
||
50 | 'div', |
||
51 | [ |
||
52 | 'id' => 'GeoJsonMap', |
||
53 | 'style' => 'width: 100%; height: 600px; background-color: #eeeeee; overflow: hidden;', |
||
54 | 'class' => 'maps-map maps-leaflet maps-geojson-editor' |
||
55 | ], |
||
56 | Html::element( |
||
57 | 'div', |
||
58 | [ |
||
59 | 'class' => 'maps-loading-message' |
||
60 | ], |
||
61 | wfMessage( 'maps-loading-map' )->inContentLanguage()->text() |
||
62 | ) |
||
63 | ) |
||
64 | ); |
||
65 | } |
||
66 | |||
84 |