aboutsummaryrefslogtreecommitdiffstats
path: root/mod/network.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2010-12-25 17:46:25 -0800
committerFriendika <info@friendika.com>2010-12-25 17:46:25 -0800
commitb211adfb1290913e11cc77bdd86b733b1f772519 (patch)
tree28e89dff96df1769aa3405e1552752a6df545268 /mod/network.php
parent38574789554b1e2737359b62b2350c7300d83888 (diff)
downloadvolse-hubzilla-b211adfb1290913e11cc77bdd86b733b1f772519.tar.gz
volse-hubzilla-b211adfb1290913e11cc77bdd86b733b1f772519.tar.bz2
volse-hubzilla-b211adfb1290913e11cc77bdd86b733b1f772519.zip
more hooks
Diffstat (limited to 'mod/network.php')
-rw-r--r--mod/network.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/mod/network.php b/mod/network.php
index 43c55b8e3..ad6db2d1e 100644
--- a/mod/network.php
+++ b/mod/network.php
@@ -284,7 +284,7 @@ function network_content(&$a, $update = 0) {
// Build the HTML
- $o .= replace_macros($template,array(
+ $tmp_item = replace_macros($template,array(
'$id' => $item['item_id'],
'$profile_url' => $profile_link,
'$name' => $profile_name,
@@ -306,6 +306,12 @@ function network_content(&$a, $update = 0) {
'$dislike' => $dislike,
'$comment' => $comment
));
+
+ $arr = array('item' => $item, 'output' => $tmp_item);
+ call_hooks('display_item', $arr);
+
+ $o .= $arr['output'];
+
}
}