Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
21 | 1 | public function addToOutput( OutputFacade $output ) { |
|
22 | 1 | $leafletPath = $GLOBALS['wgScriptPath'] . '/extensions/Maps/resources/lib/leaflet'; |
|
23 | |||
24 | 1 | $output->addHeadItem( |
|
25 | 1 | 'MapsGeoJsonHeadItem', |
|
26 | 1 | Html::linkedStyle( "$leafletPath/leaflet.css" ) . Html::linkedScript( "$leafletPath/leaflet.js" ) |
|
27 | ); |
||
28 | |||
29 | 1 | $output->addHTML( $this->getJavascript() . $this->getHtml() ); |
|
30 | 1 | $output->addModules( 'ext.maps.geojson.page' ); |
|
31 | 1 | } |
|
32 | |||
84 |