]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/main/commands/web/class_WebLoginFailedCommand.php
Typos fixed and special command resolver are now possible
[shipsimu.git] / inc / classes / main / commands / web / class_WebLoginFailedCommand.php
index 47eae8055127b8005ae0a382d4d68acb7d65a421..f2b6b81017c1d6d68078a8b10f42acbe099436b4 100644 (file)
@@ -30,15 +30,6 @@ class WebLoginFailedCommand extends BaseCommand implements Commandable {
        protected function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
-
-               // Set special description
-               $this->setObjectDescription("Command for the "login failed" page");
-
-               // Create unique ID number
-               $this->generateUniqueId();
-
-               // Clean up a little
-               $this->removeSystemArray();
        }
 
        /**
@@ -70,7 +61,10 @@ class WebLoginFailedCommand extends BaseCommand implements Commandable {
                $appInstance = $this->getResolverInstance()->getApplicationInstance();
 
                // Prepare a template instance
-               $templateInstance = $this->prepareTemplateEngine($appInstance);
+               $templateInstance = $this->prepareTemplateInstance($appInstance);
+
+               // Assign application data with template engine
+               $templateInstance->assignApplicationData($appInstance);
 
                // Load the master template
                $masterTemplate = $appInstance->getMasterTemplate();
@@ -109,7 +103,7 @@ class WebLoginFailedCommand extends BaseCommand implements Commandable {
                // these two calls to cache compiled templates.
                $templateInstance->compileVariables();
 
-               // Get the content back from the template engine and put it in the response class
+               // Get the content back from the template engine and put it in response class
                $templateInstance->transferToResponse($responseInstance);
        }