aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2018-08-27 10:02:58 +0200
committerMario <mario@mariovavti.com>2018-08-27 10:02:58 +0200
commit4c1944a08dcaacf1d638af60cb1f7679cb88c192 (patch)
treea14eea0f66af3a524453edf4bdfec296262d53e3 /Zotlabs/Lib
parent95f870f1b41ff243a03617b368c8606354de8273 (diff)
parenta0c2bbac9d96a5461b65b5e0ff733a2fcd193dd4 (diff)
downloadvolse-hubzilla-4c1944a08dcaacf1d638af60cb1f7679cb88c192.tar.gz
volse-hubzilla-4c1944a08dcaacf1d638af60cb1f7679cb88c192.tar.bz2
volse-hubzilla-4c1944a08dcaacf1d638af60cb1f7679cb88c192.zip
Merge branch 'extend-convitems-dropdown' into 'dev'
Extend cog dropdown & temp fix for feed display of corrupt mids See merge request hubzilla/core!1265
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r--Zotlabs/Lib/ThreadItem.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/Zotlabs/Lib/ThreadItem.php b/Zotlabs/Lib/ThreadItem.php
index ed78ae00b..f8a7366f8 100644
--- a/Zotlabs/Lib/ThreadItem.php
+++ b/Zotlabs/Lib/ThreadItem.php
@@ -325,6 +325,10 @@ class ThreadItem {
$has_tags = (($body['tags'] || $body['categories'] || $body['mentions'] || $body['attachments'] || $body['folders']) ? true : false);
+ $dropdown_extras_arr = [ 'item' => $item , 'dropdown_extras' => '' ];
+ call_hooks('dropdown_extras',$dropdown_extras_arr);
+ $dropdown_extras = $dropdown_extras_arr['dropdown_extras'];
+
$tmp_item = array(
'template' => $this->get_template(),
'mode' => $mode,
@@ -404,6 +408,7 @@ class ThreadItem {
'addtocal' => (($has_event) ? t('Add to Calendar') : ''),
'drop' => $drop,
'multidrop' => ((feature_enabled($conv->get_profile_owner(),'multi_delete')) ? $multidrop : ''),
+ 'dropdown_extras' => $dropdown_extras,
// end toolbar buttons
'unseen_comments' => $unseen_comments,