diff options
Diffstat (limited to 'phpBB/ucp.php')
-rw-r--r-- | phpBB/ucp.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/phpBB/ucp.php b/phpBB/ucp.php index 64afa0be67..9730591698 100644 --- a/phpBB/ucp.php +++ b/phpBB/ucp.php @@ -328,6 +328,18 @@ if (!$auth->acl_get('u_sig')) $module->set_display('profile', 'signature', false); } +/** +* Use this event to enable and disable additional UCP modules +* +* @event core.ucp_display_module_before +* @var p_master module Object holding all modules and their status +* @var mixed id Active module category (can be the int or string) +* @var string mode Active module +* @since 3.1-A1 +*/ +$vars = array('module', 'id', 'mode'); +extract($phpbb_dispatcher->trigger_event('core.ucp_display_module_before', compact($vars))); + // Select the active module $module->set_active($id, $mode); |