diff options
author | Marc Alexander <admin@m-a-styles.de> | 2016-12-25 11:57:56 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-12-25 11:57:56 +0100 |
commit | 27cf12f8070a34582781aecfabcc16689b0cb50a (patch) | |
tree | 5f9350e8ab1b39dcdfd8a247e332370a6313b2a5 /phpBB | |
parent | d8348f8a5e9826594f56d9b908929b89808701aa (diff) | |
parent | c127591d25f8077e63ccac07effd502f32b5ad52 (diff) | |
download | forums-27cf12f8070a34582781aecfabcc16689b0cb50a.tar forums-27cf12f8070a34582781aecfabcc16689b0cb50a.tar.gz forums-27cf12f8070a34582781aecfabcc16689b0cb50a.tar.bz2 forums-27cf12f8070a34582781aecfabcc16689b0cb50a.tar.xz forums-27cf12f8070a34582781aecfabcc16689b0cb50a.zip |
Merge branch '3.1.x' into 3.2.x
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/functions_admin.php | 30 |
1 files changed, 26 insertions, 4 deletions
diff --git a/phpBB/includes/functions_admin.php b/phpBB/includes/functions_admin.php index c1a99da231..1ad41156f9 100644 --- a/phpBB/includes/functions_admin.php +++ b/phpBB/includes/functions_admin.php @@ -644,8 +644,8 @@ function move_posts($post_ids, $topic_id, $auto_sync = true) * * @event core.move_posts_before * @var array post_ids Array of post ids to move - * @var string topic_id The topic id the posts are moved to - * @var bool auto_sync Whether or not to perform auto sync + * @var int topic_id The topic id the posts are moved to + * @var bool auto_sync Whether or not to perform auto sync * @var array forum_ids Array of the forum ids the posts are moved from * @var array topic_ids Array of the topic ids the posts are moved from * @var array forum_row Array with the forum id of the topic the posts are moved to @@ -676,8 +676,8 @@ function move_posts($post_ids, $topic_id, $auto_sync = true) * * @event core.move_posts_after * @var array post_ids Array of the moved post ids - * @var string topic_id The topic id the posts are moved to - * @var bool auto_sync Whether or not to perform auto sync + * @var int topic_id The topic id the posts are moved to + * @var bool auto_sync Whether or not to perform auto sync * @var array forum_ids Array of the forum ids the posts are moved from * @var array topic_ids Array of the topic ids the posts are moved from * @var array forum_row Array with the forum id of the topic the posts are moved to @@ -701,6 +701,28 @@ function move_posts($post_ids, $topic_id, $auto_sync = true) sync('topic_attachment', 'topic_id', $topic_ids); sync('topic', 'topic_id', $topic_ids, true); sync('forum', 'forum_id', $forum_ids, true, true); + + /** + * Perform additional actions after move post sync + * + * @event core.move_posts_sync_after + * @var array post_ids Array of the moved post ids + * @var int topic_id The topic id the posts are moved to + * @var bool auto_sync Whether or not to perform auto sync + * @var array forum_ids Array of the forum ids the posts are moved from + * @var array topic_ids Array of the topic ids the posts are moved from + * @var array forum_row Array with the forum id of the topic the posts are moved to + * @since 3.1.11-RC1 + */ + $vars = array( + 'post_ids', + 'topic_id', + 'auto_sync', + 'forum_ids', + 'topic_ids', + 'forum_row', + ); + extract($phpbb_dispatcher->trigger_event('core.move_posts_sync_after', compact($vars))); } // Update posted information |