diff options
author | Mario <mario@mariovavti.com> | 2019-11-03 10:12:12 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2019-11-03 10:12:12 +0100 |
commit | d0661cd4a30db7042835ca3ffda6a194d6bad9a7 (patch) | |
tree | 5ad172a9f06e31f6e360d535427e7dd76d8b050a | |
parent | 6fd15d66a7a0eb1aaac476e2d25cfea174d0cd81 (diff) | |
parent | 707b19dc35160983694b21e5e79dd7ce6d64dfee (diff) | |
download | volse-hubzilla-d0661cd4a30db7042835ca3ffda6a194d6bad9a7.tar.gz volse-hubzilla-d0661cd4a30db7042835ca3ffda6a194d6bad9a7.tar.bz2 volse-hubzilla-d0661cd4a30db7042835ca3ffda6a194d6bad9a7.zip |
Merge branch 'commentsclosed-hook' into 'dev'
Add hook to comments_are_now_closed()
See merge request hubzilla/core!1763
-rw-r--r-- | doc/hook/comments_are_now_closed.bb | 11 | ||||
-rw-r--r-- | doc/hooklist.bb | 3 | ||||
-rwxr-xr-x | include/items.php | 19 |
3 files changed, 33 insertions, 0 deletions
diff --git a/doc/hook/comments_are_now_closed.bb b/doc/hook/comments_are_now_closed.bb new file mode 100644 index 000000000..4d3baa95a --- /dev/null +++ b/doc/hook/comments_are_now_closed.bb @@ -0,0 +1,11 @@ +[h3]comments_are_now_closed[/h3] + +Called when deciding whether or not commenting is closed for an item. + + +Hook data (array): + item => posted item + closed => 'unset' + + +To over-ride the default behaviour, change closed to true or false diff --git a/doc/hooklist.bb b/doc/hooklist.bb index e11bf1c6f..a923e7ae3 100644 --- a/doc/hooklist.bb +++ b/doc/hooklist.bb @@ -154,6 +154,9 @@ Hooks allow plugins/addons to "hook into" the code at many points and alter the [zrl=[baseurl]/help/hook/comment_buttons]comment_buttons[/zrl] Called when rendering the edit buttons for comments +[zrl=[baseurl]/help/hook/comments_are_now_closed]comments_are_now_closed[/zrl] + Called when deciding whether or not to present a comment box for a post + [zrl=[baseurl]/help/hook/connect_premium]connect_premium[/zrl] Called when connecting to a premium channel diff --git a/include/items.php b/include/items.php index 6786b8b05..917808ad5 100755 --- a/include/items.php +++ b/include/items.php @@ -206,6 +206,25 @@ function collect_recipients($item, &$private_envelope,$include_groups = true) { } function comments_are_now_closed($item) { + + $x = [ + 'item' => $item, + 'closed' => 'unset' + ]; + + /** + * @hooks comments_are_now_closed + * Called to determine whether commenting should be closed + * * \e array \b item + * * \e boolean \b closed - return value + */ + + call_hooks('comments_are_now_closed', $x); + + if ($x['closed'] != 'unset') { + return $x['closed']; + } + if($item['comments_closed'] > NULL_DATE) { $d = datetime_convert(); if($d > $item['comments_closed']) |