]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/nodes/list/class_HubListNode.php
Updated 'core'.
[hub.git] / application / hub / main / nodes / list / class_HubListNode.php
index 37e74a0ad5b038716b015eeb855cc4a6bfa0f0f7..ac7c92fd58b831028ccecf42b299d4c1865990c9 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * A hub-node class for the 'List' mode
  *
- * @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 Hub Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Hub 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
@@ -38,7 +38,7 @@ class HubListNode extends BaseHubNode implements NodeHelper, Registerable {
         * @param       $requestInstance        An instance of a Requestable class
         * @return      $nodeInstance           An instance of this hub-node class
         */
-       public final static function createHubListNode (Requestable $requestInstance) {
+       public static final function createHubListNode (Requestable $requestInstance) {
                // Get a new instance
                $nodeInstance = new HubListNode();
 
@@ -58,40 +58,39 @@ class HubListNode extends BaseHubNode implements NodeHelper, Registerable {
         * @todo        Implement more bootstrap steps
         */
        public function doBootstrapping () {
-               // Do more here
-               $this->partialStub('Do something before hub descriptor is published.');
-
-               // Publish the descriptor of this hub, this will "announce" us to upper hubs
-               $this->publishHubDescriptor();
-
-               // Do more here
-               $this->partialStub('Do something after hub descriptor is published.');
+               $this->partialStub();
        }
 
        /**
-        * Initializes hub-specific queues
+        * Add some node-specific filters
         *
         * @return      void
-        * @todo        Unfinished method
         */
-       public function initQueues () {
-               // Call generic queues every hub may have, like the core queue
-               parent::initGenericQueues();
-               $this->partialStub('Please add some more hub-specific queues.');
+       public function addExtraNodeFilters () {
+               // Get the application instance from registry
+               $applicationInstance = Registry::getRegistry()->getInstance('app');
+
+               // Get the controller from the application
+               $controllerInstance = $applicationInstance->getControllerInstance();
+
+               // Self-announcement task
+               $controllerInstance->addActivationFilter(ObjectFactory::createObjectByConfiguredName('node_activation_announcement_task_filter'));
+
+               // @TODO Add some filters here
+               $this->partialStub('Add some filters here.');
        }
 
        /**
-        * Adds some node-specific filters to the filter chains
+        * Adds extra tasks to the given handler for this node
         *
-        * @param       $requestInstance        A Requestable class
-        * @param       $responseInstance       A Responseable class
+        * @param       $handlerInstance        An instance of a HandleableTask class
         * @return      void
-        * @todo        0%
+        * @todo        0% done
         */
-       public function addExtraFilters (Requestable $requestInstance, Responseable $responseInstance) {
-               $this->partialStub('Please implement this method.');
+       public function addExtraTasks (HandleableTask $handlerInstance) {
+               $this->partialStub('Please add some tasks or empty this method.');
        }
 }
 
-//
+// [EOF]
 ?>