mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-24 02:48:56 +00:00
[ticket/16448] Add event core.mcp_get_post_data_after
PHPBB3-16448
This commit is contained in:
parent
8877688ee4
commit
cd85541e19
1 changed files with 19 additions and 0 deletions
|
@ -265,6 +265,25 @@ function phpbb_get_post_data($post_ids, $acl_list = false, $read_tracking = fals
|
|||
}
|
||||
$db->sql_freeresult($result);
|
||||
|
||||
/**
|
||||
* This event allows you to modify post data displayed in the MCP
|
||||
*
|
||||
* @event core.mcp_get_post_data_after
|
||||
* @var array post_ids Array with post ids that have been fetched
|
||||
* @var mixed acl_list Either false or an array with permission strings to check
|
||||
* @var bool read_tracking Whether or not to take last mark read time into account
|
||||
* @var array rowset The array of posts to be returned
|
||||
* @since 3.2.10-RC1
|
||||
* @since 3.3.1-RC1
|
||||
*/
|
||||
$vars = [
|
||||
'post_ids',
|
||||
'acl_list',
|
||||
'read_tracking',
|
||||
'rowset',
|
||||
];
|
||||
extract($phpbb_dispatcher->trigger_event('core.mcp_get_post_data_after', compact($vars)));
|
||||
|
||||
return $rowset;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue