]> git.mxchange.org Git - hub.git/blobdiff - application/hub/class_ApplicationHelper.php
Double-quotes rewritten to single-quotes
[hub.git] / application / hub / class_ApplicationHelper.php
index eb29ff7b16e6758c7e8f7312f0304c5ec6f11c2c..6f29c8d9219ef148e2d048b1106fcc50464313ef 100644 (file)
@@ -153,7 +153,8 @@ class ApplicationHelper extends BaseFrameworkSystem implements ManageableApplica
         * @return      void
         */
        public final function entryPoint () {
-               // The default node mode is from config. This mode is being "transfered" into a class name
+               // --------------------- Init phase ---------------------
+               // The default node-mode is from our configuration
                $nodeMode = $this->getConfigInstance()->readConfig('node_mode');
 
                // Prepare a ConsoleRequest class to catch all parameters
@@ -170,6 +171,10 @@ class ApplicationHelper extends BaseFrameworkSystem implements ManageableApplica
 
                // And try to instance it
                $nodeInstance = ObjectFactory::createObjectByName($className);
+
+               // --------------------- Bootstrapping phase ---------------------
+               // Try to bootstrap the node and pass the request instance to it
+               $nodeInstance->doBootstrapping($requestInstance);
        }
 
        /**