aboutsummaryrefslogtreecommitdiffstats
path: root/include/text.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/text.php')
-rw-r--r--include/text.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/text.php b/include/text.php
index 404d34dcb..335dd46ba 100644
--- a/include/text.php
+++ b/include/text.php
@@ -1312,6 +1312,12 @@ function generate_map($coord) {
return $arr['html'];
}
+function generate_named_map($location) {
+ $arr = array('location' => $location, 'html' => '');
+ call_hooks('generate_named_map',$arr);
+ return $arr['html'];
+}
+
function prepare_body(&$item,$attach = false) {