Add [ map ] element to bbcode, no closing tag. Requires a map generator plugin (like openstreetmap which was just updated) and also requires that the author has browser location enabled.

This commit is contained in:
friendica
2014-12-16 15:50:20 -08:00
parent 4d5f28f07a
commit 789e025eab
2 changed files with 22 additions and 0 deletions

View File

@@ -1306,6 +1306,13 @@ function format_filer(&$item) {
}
function generate_map($coord) {
$arr = array('lat' => substr($coord,0,strpos($coord,' ')), 'lon' => substr($coord,strpos($coord,' ')+1), 'html' => '');
call_hooks('generate_map',$arr);
return $arr['html'];
}
function prepare_body(&$item,$attach = false) {
@@ -1323,6 +1330,13 @@ function prepare_body(&$item,$attach = false) {
return $s;
}
if(strpos($s,'<div class="map">') !== false && $item['coord']) {
$x = generate_map(trim($item['coord']));
if($x) {
$s = preg_replace('/\<div class\=\"map\"\>/','$0' . $x,$s);
}
}
$s .= theme_attachments($item);
$writeable = ((get_observer_hash() == $item['owner_xchan']) ? true : false);