Continued:
[core.git] / inc / main / classes / controller / html / class_HtmlLoginController.php
1 <?php
2 // Own namespace
3 namespace CoreFramework\Controller\Login;
4
5 /**
6  * Controller for login form with password reminder and maybe enabled
7  * "guest-login" button
8  *
9  * @author              Roland Haeder <webmaster@shipsimu.org>
10  * @version             0.0.0
11  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
12  * @license             GNU GPL 3.0 or any newer version
13  * @link                http://www.shipsimu.org
14  *
15  * This program is free software: you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation, either version 3 of the License, or
18  * (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program. If not, see <http://www.gnu.org/licenses/>.
27  */
28 class HtmlLoginController extends BaseController implements Controller {
29         /**
30          * Protected constructor
31          *
32          * @return      void
33          */
34         protected function __construct () {
35                 // Call parent constructor
36                 parent::__construct(__CLASS__);
37         }
38
39         /**
40          * Creates an instance of this class
41          *
42          * @param       $resolverInstance               An instance of a command resolver class
43          * @return      $controllerInstance             A prepared instance of this class
44          * @todo        Add some filters to this controller
45          */
46         public static final function createHtmlLoginController (CommandResolver $resolverInstance) {
47                 // Create the instance
48                 $controllerInstance = new HtmlLoginController();
49
50                 // Set the command resolver
51                 $controllerInstance->setResolverInstance($resolverInstance);
52
53                 // Return the prepared instance
54                 return $controllerInstance;
55         }
56
57         /**
58          * Handles the given request and response
59          *
60          * @param       $requestInstance        An instance of a request class
61          * @param       $responseInstance       An instance of a response class
62          * @return      void
63          */
64         public function handleRequest (Requestable $requestInstance, Responseable $responseInstance) {
65                 // Generic pre-post command execution
66                 $this->executeGenericPrePostCommand($requestInstance, $responseInstance);
67         }
68
69 }