mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/13974] Add core.mcp_change_poster_after event
Create a new event to perform additional tasks after chainging a post's poster. PHPBB3-13974
This commit is contained in:
parent
7b903919bf
commit
607f2e791f
1 changed files with 11 additions and 0 deletions
|
@ -559,6 +559,17 @@ function change_poster(&$post_info, $userdata)
|
||||||
|
|
||||||
$post_info = $post_info[$post_id];
|
$post_info = $post_info[$post_id];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This event allows you to perform additional tasks after changing a post's poster
|
||||||
|
*
|
||||||
|
* @event core.mcp_change_poster_after
|
||||||
|
* @var string userdata Information on a post's new poster
|
||||||
|
* @var array post_info Information on the affected post
|
||||||
|
* @since 3.1.6-RC1
|
||||||
|
*/
|
||||||
|
$vars = array('userdata', 'post_info');
|
||||||
|
extract($phpbb_dispatcher->trigger_event('core.mcp_change_poster_after', compact($vars)));
|
||||||
|
|
||||||
// Now add log entry
|
// Now add log entry
|
||||||
add_log('mod', $post_info['forum_id'], $post_info['topic_id'], 'LOG_MCP_CHANGE_POSTER', $post_info['topic_title'], $from_username, $to_username);
|
add_log('mod', $post_info['forum_id'], $post_info['topic_id'], 'LOG_MCP_CHANGE_POSTER', $post_info['topic_title'], $from_username, $to_username);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue