]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/filter/task/chat/class_ChatTaskHandlerInitializerFilter.php
Updated 'core'.
[hub.git] / application / hub / main / filter / task / chat / class_ChatTaskHandlerInitializerFilter.php
index 215eb2eda76cec5d2d4552762cd68b98d3be8bf8..85db533fb2ed28b4a7ab4c07525e048549cdf442 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * A TaskHandlerInitializer filter for chat
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 chat Developer Team
+ * @copyright  Copyright (c) 2012 Chat Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.org
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -21,7 +21,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-class ChatTaskHandlerInitializerFilter extends BaseFilter implements Filterable {
+class ChatTaskHandlerInitializerFilter extends BaseChatFilter implements Filterable {
        /**
         * Protected constructor
         *
@@ -51,7 +51,7 @@ class ChatTaskHandlerInitializerFilter extends BaseFilter implements Filterable
         * @param       $requestInstance        An instance of a class with an Requestable interface
         * @param       $responseInstance       An instance of a class with an Responseable interface
         * @return      void
-        * @throws      FilterChainException    If we need to interrupt the filter chain
+        * @throws      FilterChainException    If the filter chain needs to be interrupted
         * @todo        5% done
         */
        public function execute (Requestable $requestInstance, Responseable $responseInstance) {
@@ -61,6 +61,9 @@ class ChatTaskHandlerInitializerFilter extends BaseFilter implements Filterable
                // Get a new task handler instance
                $handlerInstance = ObjectFactory::createObjectByConfiguredName('task_handler_class');
 
+               // Put the task handler in registry
+               Registry::getRegistry()->addInstance('task_handler', $handlerInstance);
+
                /*
                 * Register all tasks:
                 *
@@ -68,9 +71,6 @@ class ChatTaskHandlerInitializerFilter extends BaseFilter implements Filterable
                 */
                $taskInstance = ObjectFactory::createObjectByConfiguredName('chat_telnet_listener_task_class');
                $handlerInstance->registerTask('chat_telnet_listener', $taskInstance);
-
-               // Put the task handler in registry
-               Registry::getRegistry()->addInstance('task', $handlerInstance);
        }
 }