Move EventDispatcher class to a separate namespace

This commit is contained in:
Dmitriy Simushev 2014-10-17 09:48:32 +00:00
parent 0860fcc496
commit e847944228

View File

@ -23,6 +23,7 @@
namespace Mibew\Mibew\Plugin\Emoji; namespace Mibew\Mibew\Plugin\Emoji;
use Mibew\EventDispatcher\EventDispatcher;
use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Request;
/** /**
@ -70,7 +71,7 @@ class Plugin extends \Mibew\Plugin\AbstractPlugin implements \Mibew\Plugin\Plugi
public function run() public function run()
{ {
// Attach CSS and JS files of the plugin to chat window. // Attach CSS and JS files of the plugin to chat window.
$dispatcher = \Mibew\EventDispatcher::getInstance(); $dispatcher = EventDispatcher::getInstance();
$dispatcher->attachListener('pageAddCSS', $this, 'attachCssFiles'); $dispatcher->attachListener('pageAddCSS', $this, 'attachCssFiles');
$dispatcher->attachListener('pageAddJS', $this, 'attachJsFiles'); $dispatcher->attachListener('pageAddJS', $this, 'attachJsFiles');
$dispatcher->attachListener('pageAddJSPluginOptions', $this, 'attachPluginOptions'); $dispatcher->attachListener('pageAddJSPluginOptions', $this, 'attachPluginOptions');