X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=application%2Fmxchange%2Fclass_ApplicationHelper.php;h=346a848fd6267a3ce78c4520364467322b3a4294;hp=10bd2be5d1b4fb9db849f795eac68c6815e03786;hb=301d5f44f5a4e8a91d3871874387639fac53d1e4;hpb=b98632335a2e4d729b3722288d44cec70a8ec8bb diff --git a/application/mxchange/class_ApplicationHelper.php b/application/mxchange/class_ApplicationHelper.php index 10bd2be5d1..346a848fd6 100644 --- a/application/mxchange/class_ApplicationHelper.php +++ b/application/mxchange/class_ApplicationHelper.php @@ -172,15 +172,21 @@ class ApplicationHelper extends BaseApplication implements ManageableApplication * @return void */ public final function entryPoint () { + // Get a web output class + $outputInstance = ObjectFactory::createObjectByConfiguredName('output_class'); + + // Set it in this application + $this->setWebOutputInstance($outputInstance); + // Create a new request object $requestInstance = ObjectFactory::createObjectByName('HttpRequest'); // Remember request instance here $this->setRequestInstance($requestInstance); - // Default response is HTTP (HTML page) and type is "Web" - $response = "http"; - $responseType = "web"; + // Default response is HTTP (HTML page) and type is 'Web' + $response = 'http'; + $responseType = 'web'; // Do we have another response? if ($requestInstance->isRequestElementSet('request')) {