]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/nodes/master/class_HubMasterNode.php
A lot files renamed (sorry guys for the mess) and moved to sub directories
[hub.git] / application / hub / main / nodes / master / class_HubMasterNode.php
index 3e9d399fe42f63bccc0c061412fffec14eb99bcd..5d75473f560c4e8569b90352116b7debc2ca6c03 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Hub Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Hub Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -38,7 +38,7 @@ class HubMasterNode 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 createHubMasterNode (Requestable $requestInstance) {
+       public static final function createHubMasterNode (Requestable $requestInstance) {
                // Get a new instance
                $nodeInstance = new HubMasterNode();
 
@@ -58,7 +58,7 @@ class HubMasterNode extends BaseHubNode implements NodeHelper, Registerable {
         * @todo        Implement this method
         */
        public function doBootstrapping () {
-               $this->partialStub('Please implement this method.');
+               $this->partialStub();
        }
 
        /**
@@ -72,7 +72,26 @@ class HubMasterNode extends BaseHubNode implements NodeHelper, Registerable {
                parent::initGenericQueues();
                $this->partialStub('Please add some more hub-specific queues.');
        }
+
+       /**
+        * Add some node-specific filters
+        *
+        * @return      void
+        */
+       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_self_announcement_task_filter'));
+
+               // @TODO Add some filters here
+               $this->partialStub('Add some filters here.');
+       }
 }
 
-//
+// [EOF]
 ?>