diff options
author | zotlabs <mike@macgirvin.com> | 2017-08-01 22:25:55 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-08-01 22:25:55 -0700 |
commit | 9359f9fe4d77de392660c2bf6f1df8becc9fa6bf (patch) | |
tree | 51e60f04251f0c2334605a41554e5b53e4ca45a8 /Zotlabs/Module/Notify.php | |
parent | 01526a9a79294fe5f96b7c3bfbd362f91feec433 (diff) | |
download | volse-hubzilla-9359f9fe4d77de392660c2bf6f1df8becc9fa6bf.tar.gz volse-hubzilla-9359f9fe4d77de392660c2bf6f1df8becc9fa6bf.tar.bz2 volse-hubzilla-9359f9fe4d77de392660c2bf6f1df8becc9fa6bf.zip |
plugin hook for update_unseen
Diffstat (limited to 'Zotlabs/Module/Notify.php')
-rw-r--r-- | Zotlabs/Module/Notify.php | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/Zotlabs/Module/Notify.php b/Zotlabs/Module/Notify.php index f592f6f37..3d6e1c2e7 100644 --- a/Zotlabs/Module/Notify.php +++ b/Zotlabs/Module/Notify.php @@ -15,12 +15,16 @@ class Notify extends \Zotlabs\Web\Controller { intval(local_channel()) ); if($r) { - q("update notify set seen = 1 where (( parent != '' and parent = '%s' and otype = '%s' ) or link = '%s' ) and uid = %d", - dbesc($r[0]['parent']), - dbesc($r[0]['otype']), - dbesc($r[0]['link']), - intval(local_channel()) - ); + $x = [ 'channel_id' => local_channel(), 'update' => 'unset' ]; + call_hooks('update_unseen',$x); + if($x['update'] === 'unset' || intval($x['update'])) { + q("update notify set seen = 1 where (( parent != '' and parent = '%s' and otype = '%s' ) or link = '%s' ) and uid = %d", + dbesc($r[0]['parent']), + dbesc($r[0]['otype']), + dbesc($r[0]['link']), + intval(local_channel()) + ); + } goaway($r[0]['link']); } goaway(z_root()); |