X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=application%2Fhub%2Fclass_ApplicationHelper.php;h=6f29c8d9219ef148e2d048b1106fcc50464313ef;hb=df5b9f549c59c6772d77d68f01c72bbc90c422f0;hp=eb29ff7b16e6758c7e8f7312f0304c5ec6f11c2c;hpb=0954352df67a1f112c736e08dd31a13ff9dda03d;p=hub.git diff --git a/application/hub/class_ApplicationHelper.php b/application/hub/class_ApplicationHelper.php index eb29ff7b1..6f29c8d92 100644 --- a/application/hub/class_ApplicationHelper.php +++ b/application/hub/class_ApplicationHelper.php @@ -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); } /**