Simple exception handler and error handler added, profile update added with stubs
[shipsimu.git] / inc / classes / main / commands / web / class_WebLoginCommand.php
index 3f5632195ce69906e71fcb9794b99b0b538ae814..b5a89acbfd72a0a33425f5b790d4be0a7d268349 100644 (file)
@@ -32,7 +32,7 @@ class WebLoginCommand extends BaseCommand implements Commandable {
                parent::__construct(__CLASS__);
 
                // Set special description
-               $this->setObjectDescription("Command for the "home" page");
+               $this->setObjectDescription("Command for the login form page");
 
                // Create unique ID number
                $this->generateUniqueId();
@@ -112,6 +112,16 @@ class WebLoginCommand extends BaseCommand implements Commandable {
                // Get the content back from the template engine and put it in the response class
                $templateInstance->transferToResponse($responseInstance);
        }
+
+       /**
+        * Adds extra filters to the given controller instance
+        *
+        * @param       $controllerInstance             A controller instance
+        * @return      void
+        */
+       function addExtraFilters (Controller $controllerInstance) {
+               // Empty for now
+       }
 }
 
 // [EOF]