mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-28 18:23:00 +02:00
[feature/php-events] Add core.acp_users_overview_run_quicktool
This event was split from core.acp_users_display_overview to make it work as expected. PHPBB3-9550
This commit is contained in:
parent
be61bcb7b5
commit
171c07a084
@ -750,6 +750,19 @@ class acp_users
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
default:
|
||||
/**
|
||||
* Run custom quicktool code
|
||||
*
|
||||
* @event core.acp_users_overview_run_quicktool
|
||||
* @var array user_row Current user data
|
||||
* @var string action Quick tool that should be run
|
||||
* @since 3.1-A1
|
||||
*/
|
||||
$vars = array('action', 'user_row');
|
||||
extract($phpbb_dispatcher->trigger_event('core.acp_users_overview_run_quicktool', compact($vars)));
|
||||
break;
|
||||
}
|
||||
|
||||
// Handle registration info updates
|
||||
|
Loading…
x
Reference in New Issue
Block a user