diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2014-10-01 15:59:00 +0200 | 
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2014-10-01 15:59:00 +0200 | 
| commit | 0e27b10b8f866eb0b7a11e6d27964c77f85fc6ae (patch) | |
| tree | f2fa682c4a877dff799b4d3709e11deeeaf47dc2 | |
| parent | 40cd7570e6f4da7cc60d83a3e99c72a2fb99e3f7 (diff) | |
| parent | 95c0d81ba17c8ef6b85882143a46f22e970cc3b5 (diff) | |
| download | forums-0e27b10b8f866eb0b7a11e6d27964c77f85fc6ae.tar forums-0e27b10b8f866eb0b7a11e6d27964c77f85fc6ae.tar.gz forums-0e27b10b8f866eb0b7a11e6d27964c77f85fc6ae.tar.bz2 forums-0e27b10b8f866eb0b7a11e6d27964c77f85fc6ae.tar.xz forums-0e27b10b8f866eb0b7a11e6d27964c77f85fc6ae.zip  | |
Merge pull request #3015 from nickvergessen/ticket/13119
[ticket/13119] Add another event which is triggered independent from actions
| -rw-r--r-- | phpBB/includes/mcp/mcp_ban.php | 16 | 
1 files changed, 16 insertions, 0 deletions
diff --git a/phpBB/includes/mcp/mcp_ban.php b/phpBB/includes/mcp/mcp_ban.php index 1eb79ea29e..4d2151fded 100644 --- a/phpBB/includes/mcp/mcp_ban.php +++ b/phpBB/includes/mcp/mcp_ban.php @@ -39,6 +39,22 @@ class mcp_ban  		$user->add_lang(array('acp/ban', 'acp/users'));  		$this->tpl_name = 'mcp_ban'; +		/** +		* Use this event to pass perform actions when a ban is issued or revoked +		* +		* @event core.mcp_ban_main +		* @var	bool	bansubmit	True if a ban is issued +		* @var	bool	unbansubmit	True if a ban is removed +		* @var	string	mode		Mode of the ban that is being worked on +		* @since 3.1.0-RC5 +		*/ +		$vars = array( +			'bansubmit', +			'unbansubmit', +			'mode', +		); +		extract($phpbb_dispatcher->trigger_event('core.mcp_ban_main', compact($vars))); +  		// Ban submitted?  		if ($bansubmit)  		{  | 
