aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_posting.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2017-04-26 19:57:35 -0400
committerMarc Alexander <admin@m-a-styles.de>2017-04-26 19:57:35 -0400
commite53343857a2c54f7d14f8ce420b9db1d75a62c16 (patch)
tree177738e8213e5d78dd07fdc13fdff4a7188aad70 /phpBB/includes/functions_posting.php
parent994c1d79b142670ce4ab0575d1819237d2d287a5 (diff)
parent0ea839e595ce170d17d1861eab1bbc51f1640b3a (diff)
downloadforums-e53343857a2c54f7d14f8ce420b9db1d75a62c16.tar
forums-e53343857a2c54f7d14f8ce420b9db1d75a62c16.tar.gz
forums-e53343857a2c54f7d14f8ce420b9db1d75a62c16.tar.bz2
forums-e53343857a2c54f7d14f8ce420b9db1d75a62c16.tar.xz
forums-e53343857a2c54f7d14f8ce420b9db1d75a62c16.zip
Merge pull request #4674 from senky/ticket/13730
[ticket/13730] Add core.delete_post_end event
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r--phpBB/includes/functions_posting.php30
1 files changed, 29 insertions, 1 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php
index ba367e5eeb..32b0149701 100644
--- a/phpBB/includes/functions_posting.php
+++ b/phpBB/includes/functions_posting.php
@@ -1315,7 +1315,7 @@ function topic_review($topic_id, $forum_id, $mode = 'topic_review', $cur_post_id
*/
function delete_post($forum_id, $topic_id, $post_id, &$data, $is_soft = false, $softdelete_reason = '')
{
- global $db, $user, $auth, $phpbb_container;
+ global $db, $user, $auth, $phpbb_container, $phpbb_dispatcher;
global $config, $phpEx, $phpbb_root_path;
// Specify our post mode
@@ -1566,6 +1566,34 @@ function delete_post($forum_id, $topic_id, $post_id, &$data, $is_soft = false, $
sync('topic_reported', 'topic_id', array($topic_id));
}
+ /**
+ * This event is used for performing actions directly after a post or topic
+ * has been deleted.
+ *
+ * @event core.delete_post_after
+ * @var int forum_id Post forum ID
+ * @var int topic_id Post topic ID
+ * @var int post_id Post ID
+ * @var array data Post data
+ * @var bool is_soft Soft delete flag
+ * @var string softdelete_reason Soft delete reason
+ * @var string post_mode delete_topic, delete_first_post, delete_last_post or delete
+ * @var mixed next_post_id Next post ID in the topic (post ID or false)
+ *
+ * @since 3.1.11-RC1
+ */
+ $vars = array(
+ 'forum_id',
+ 'topic_id',
+ 'post_id',
+ 'data',
+ 'is_soft',
+ 'softdelete_reason',
+ 'post_mode',
+ 'next_post_id',
+ );
+ extract($phpbb_dispatcher->trigger_event('core.delete_post_after', compact($vars)));
+
return $next_post_id;
}