diff options
author | M.Dent <dentm42@dm42.net> | 2018-08-26 23:26:10 -0400 |
---|---|---|
committer | M.Dent <dentm42@dm42.net> | 2018-08-26 23:26:10 -0400 |
commit | a0c2bbac9d96a5461b65b5e0ff733a2fcd193dd4 (patch) | |
tree | c5317df08f71ac099c49a6e538d4d9a35f8ae097 /Zotlabs/Lib/ThreadItem.php | |
parent | 2893f7d4810de99a989f7d36d041a120fafac029 (diff) | |
download | volse-hubzilla-a0c2bbac9d96a5461b65b5e0ff733a2fcd193dd4.tar.gz volse-hubzilla-a0c2bbac9d96a5461b65b5e0ff733a2fcd193dd4.tar.bz2 volse-hubzilla-a0c2bbac9d96a5461b65b5e0ff733a2fcd193dd4.zip |
Add hook to extend conv_item cog dropdown menu
Diffstat (limited to 'Zotlabs/Lib/ThreadItem.php')
-rw-r--r-- | Zotlabs/Lib/ThreadItem.php | 5 |
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, |