Skip to content

Commit

Permalink
Merge pull request phpbb#4472 from dsinn/ticket/14804
Browse files Browse the repository at this point in the history
[ticket/14804] Add core event to MCP after merging topics
  • Loading branch information
marc1706 committed Nov 12, 2016
2 parents a298ed1 + 59b52d6 commit 577d669
Showing 1 changed file with 21 additions and 7 deletions.
28 changes: 21 additions & 7 deletions phpBB/includes/mcp/mcp_forum.php
Expand Up @@ -396,7 +396,7 @@ function mcp_resync_topics($topic_ids)
*/
function merge_topics($forum_id, $topic_ids, $to_topic_id)
{
global $db, $template, $user, $phpEx, $phpbb_root_path, $auth;
global $db, $template, $user, $phpEx, $phpbb_root_path, $auth, $phpbb_dispatcher;

if (!sizeof($topic_ids))
{
Expand All @@ -411,23 +411,23 @@ function merge_topics($forum_id, $topic_ids, $to_topic_id)

$sync_topics = array_merge($topic_ids, array($to_topic_id));

$topic_data = phpbb_get_topic_data($sync_topics, 'm_merge');
$all_topic_data = phpbb_get_topic_data($sync_topics, 'm_merge');

if (!sizeof($topic_data) || empty($topic_data[$to_topic_id]))
if (!sizeof($all_topic_data) || empty($all_topic_data[$to_topic_id]))
{
$template->assign_var('MESSAGE', $user->lang['NO_FINAL_TOPIC_SELECTED']);
return;
}

$sync_forums = array();
$topic_views = 0;
foreach ($topic_data as $data)
foreach ($all_topic_data as $data)
{
$sync_forums[$data['forum_id']] = $data['forum_id'];
$topic_views = max($topic_views, $data['topic_views']);
}

$topic_data = $topic_data[$to_topic_id];
$to_topic_data = $all_topic_data[$to_topic_id];

$post_id_list = request_var('post_id_list', array(0));
$start = request_var('start', 0);
Expand Down Expand Up @@ -475,10 +475,10 @@ function merge_topics($forum_id, $topic_ids, $to_topic_id)

if (confirm_box(true))
{
$to_forum_id = $topic_data['forum_id'];
$to_forum_id = $to_topic_data['forum_id'];

move_posts($post_id_list, $to_topic_id, false);
add_log('mod', $to_forum_id, $to_topic_id, 'LOG_MERGE', $topic_data['topic_title']);
add_log('mod', $to_forum_id, $to_topic_id, 'LOG_MERGE', $to_topic_data['topic_title']);

// Update topic views count
$sql = 'UPDATE ' . TOPICS_TABLE . '
Expand Down Expand Up @@ -511,6 +511,20 @@ function merge_topics($forum_id, $topic_ids, $to_topic_id)
$redirect = request_var('redirect', "{$phpbb_root_path}viewtopic.$phpEx?f=$to_forum_id&t=$to_topic_id");
$redirect = reapply_sid($redirect);

/**
* Perform additional actions after merging topics.
*
* @event core.mcp_forum_merge_topics_after
* @var array all_topic_data The data from all topics involved in the merge
* @var int to_topic_id The ID of the topic into which the rest are merged
* @since 3.1.11-RC1
*/
$vars = array(
'all_topic_data',
'to_topic_id',
);
extract($phpbb_dispatcher->trigger_event('core.mcp_forum_merge_topics_after', compact($vars)));

meta_refresh(3, $redirect);
trigger_error($user->lang[$success_msg] . '<br /><br />' . $return_link);
}
Expand Down

0 comments on commit 577d669

Please sign in to comment.