attachListener('pageAddCSS', $this, 'attachCssFiles'); $dispatcher->attachListener('pageAddJS', $this, 'attachJsFiles'); $dispatcher->attachListener('pageAddJSPluginOptions', $this, 'attachPluginOptions'); } /** * Event handler for "pageAddJS" event. * * @param array $args */ public function attachJSFiles(&$args) { $request = $args['request']; if ($this->isAppropriatePage($request)) { $base_path = $request->getBasePath() . '/' . $this->getFilesPath(); $args['js'][] = $base_path . '/components/es5-shim/es5-shim.js'; $args['js'][] = $base_path . '/components/emoji-images/emoji-images.js'; $args['js'][] = $base_path . '/js/plugin.js'; } } /** * Event handler for "pageAddCSS" event. * * @param array $args */ public function attachCssFiles(&$args) { $request = $args['request']; if ($this->isAppropriatePage($request)) { $args['css'][] = $request->getBasePath() . '/' . $this->getFilesPath() . '/css/styles.css'; } } /** * Event handler for "pageAddJSPluginOptions" event. * * @param array $args */ public function attachPluginOptions(&$args) { $request = $args['request']; if ($this->isAppropriatePage($request)) { $args['plugins']['MibewEmoji'] = array( 'imagesDir' => ($request->getBasePath() . '/' . $this->getFilesPath() . '/components/emoji-images/pngs'), ); } } /** * Specify dependencies of the plugin. * * @return array List of dependencies */ public static function getDependencies() { // This plugin does not depend on others so return an empty array. return array(); } /** * Checks if plugins data should be attached to the page. * * @param Request $request Incoming request * @return boolean */ protected function isAppropriatePage(Request $request) { $route = $request->attributes->get('_route'); return in_array( $route, array( 'chat_operator', 'chat_user_start', 'chat_user', 'chat_user_invitation', ) ); } }