aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-10-28 19:49:55 +0100
committerMarc Alexander <admin@m-a-styles.de>2019-10-28 19:49:55 +0100
commit1b20430399c19069e197146cbca081ec868c1282 (patch)
tree606a331ed10de72d8a332a92bc646a27b021e7ea /phpBB/includes
parent28fd9457e9c954dcaa956be58b6bc3d016800d2b (diff)
parent4e816b58c6fdc6351f44f0d50b0ea5db52278245 (diff)
downloadforums-1b20430399c19069e197146cbca081ec868c1282.tar
forums-1b20430399c19069e197146cbca081ec868c1282.tar.gz
forums-1b20430399c19069e197146cbca081ec868c1282.tar.bz2
forums-1b20430399c19069e197146cbca081ec868c1282.tar.xz
forums-1b20430399c19069e197146cbca081ec868c1282.zip
Merge pull request #5672 from OxCom/ticket/16146
[ticket/16146] New core event: after move forum
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/acp/acp_forums.php21
1 files changed, 17 insertions, 4 deletions
diff --git a/phpBB/includes/acp/acp_forums.php b/phpBB/includes/acp/acp_forums.php
index cb0593b14a..668f2f8ebd 100644
--- a/phpBB/includes/acp/acp_forums.php
+++ b/phpBB/includes/acp/acp_forums.php
@@ -1423,8 +1423,8 @@ class acp_forums
* This event may be triggered, when a forum is deleted
*
* @event core.acp_manage_forums_move_children
- * @var int from_id If of the current parent forum
- * @var int to_id If of the new parent forum
+ * @var int from_id Id of the current parent forum
+ * @var int to_id Id of the new parent forum
* @var array errors Array of errors, should be strings and not
* language key.
* @since 3.1.0-a1
@@ -1529,8 +1529,8 @@ class acp_forums
* Event when we move content from one forum to another
*
* @event core.acp_manage_forums_move_content
- * @var int from_id If of the current parent forum
- * @var int to_id If of the new parent forum
+ * @var int from_id Id of the current parent forum
+ * @var int to_id Id of the new parent forum
* @var bool sync Shall we sync the "to"-forum's data
* @var array errors Array of errors, should be strings and not
* language key. If this array is not empty,
@@ -1576,6 +1576,19 @@ class acp_forums
$db->sql_query($sql);
}
+ /**
+ * Event when content has been moved from one forum to another
+ *
+ * @event core.acp_manage_forums_move_content_after
+ * @var int from_id Id of the current parent forum
+ * @var int to_id Id of the new parent forum
+ * @var bool sync Shall we sync the "to"-forum's data
+ *
+ * @since 3.2.9-RC1
+ */
+ $vars = array('from_id', 'to_id', 'sync');
+ extract($phpbb_dispatcher->trigger_event('core.acp_manage_forums_move_content_after', compact($vars)));
+
if ($sync)
{
// Delete ghost topics that link back to the same forum then resync counters