git-svn-id: http://www.winterrodeln.org/svn/servermediawiki/mediawiki_extensions/wrmap/trunk@1750
7aebc617-e5e2-0310-91dc-
80fb5f6d2477
// Create <div/> element where the map is placed in
global $wgExtensionAssetsPath;
// Create <div/> element where the map is placed in
global $wgExtensionAssetsPath;
- $output = "<div class=\"wrmap\" style=\"border-style:none;\" data-img-path=\"$wgExtensionAssetsPath/wrmap/openlayers/img/\">";
- $output .= htmlspecialchars($json_string, ENT_NOQUOTES);
- $output .= "</div>\n";
-
- return array($output, 'markerType' => 'nowiki');
+ $doc = new WrMapDOMDocument();
+ $doc->appendElement('div', array('class' => 'wrmap', 'style' => 'border-style:none;', 'data-img-path' => "$wgExtensionAssetsPath/wrmap/openlayers/img/"))->appendText($json_string);
+ return array($doc->saveHTML($doc->firstChild), 'markerType' => 'nowiki');