| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | public function getMapHtml(): string { |
||
| 12 | return $this->wrapHtmlInThumbDivs( |
||
| 13 | Html::rawElement( |
||
| 14 | 'div', |
||
| 15 | [ |
||
| 16 | 'id' => 'GeoJsonMap', |
||
| 17 | 'style' => "width: 100%; height: 600px; background-color: #eeeeee; overflow: hidden;", |
||
| 18 | 'class' => 'maps-map maps-leaflet GeoJsonMap' |
||
| 19 | ], |
||
| 20 | wfMessage( 'maps-loading-map' )->inContentLanguage()->escaped() |
||
| 21 | ) |
||
| 22 | ); |
||
| 23 | } |
||
| 24 | |||
| 42 |