aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/event/dispatcher.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-03-24 15:45:18 +0100
committerIgor Wiedler <igor@wiedler.ch>2012-03-24 15:45:18 +0100
commit400277c03624788e6a31f9aa4a15b883478f58cc (patch)
treeab0959cb6ef734104eb85dcb74da6569559aa3ab /phpBB/includes/event/dispatcher.php
parent935a4abb7ec6ab247ee5fa90bd4d4bfe0e2f9f01 (diff)
downloadforums-400277c03624788e6a31f9aa4a15b883478f58cc.tar
forums-400277c03624788e6a31f9aa4a15b883478f58cc.tar.gz
forums-400277c03624788e6a31f9aa4a15b883478f58cc.tar.bz2
forums-400277c03624788e6a31f9aa4a15b883478f58cc.tar.xz
forums-400277c03624788e6a31f9aa4a15b883478f58cc.zip
[feature/event-dispatcher] Change phpbb_event_dispatcher to inheritance, tests
PHPBB3-9550
Diffstat (limited to 'phpBB/includes/event/dispatcher.php')
-rw-r--r--phpBB/includes/event/dispatcher.php42
1 files changed, 42 insertions, 0 deletions
diff --git a/phpBB/includes/event/dispatcher.php b/phpBB/includes/event/dispatcher.php
new file mode 100644
index 0000000000..2bf46b9b06
--- /dev/null
+++ b/phpBB/includes/event/dispatcher.php
@@ -0,0 +1,42 @@
+<?php
+/**
+*
+* @package phpBB3
+* @copyright (c) 2012 phpBB Group
+* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
+*
+*/
+
+/**
+* @ignore
+*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
+use Symfony\Component\EventDispatcher\EventDispatcher;
+
+/**
+* Extension of the Symfony2 EventDispatcher
+*
+* It provides an additional `trigger_event` method, which
+* gives some syntactic sugar for dispatching events. Instead
+* of creating the event object, the method will do that for
+* you.
+*
+* Example:
+*
+* $vars = array('page_title');
+* extract($phpbb_dispatcher->trigger_event('core.index', compact($vars)));
+*
+*/
+class phpbb_event_dispatcher extends EventDispatcher
+{
+ public function trigger_event($eventName, $data = array())
+ {
+ $event = new phpbb_event_data($data);
+ $this->dispatch($eventName, $event);
+ return $event->get_data_filtered(array_keys($data));
+ }
+}