From: Roland Häder Date: Fri, 21 Aug 2009 17:44:54 +0000 (+0000) Subject: Web output instance added X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=301d5f44f5a4e8a91d3871874387639fac53d1e4 Web output instance added --- 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')) {