X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fcommands%2Fweb%2Fclass_WebRegisterCommand.php;h=f4cc32548d184ba7a6de657f78bbb28349236fa1;hp=af1d7488b8d31b522ea8ec5924ab07502fadcfbd;hb=25c3c49665cd853fd9618426004f1f2a278e20aa;hpb=838cbd34450e0b29c5b749d86a526871dac461ac diff --git a/inc/classes/main/commands/web/class_WebRegisterCommand.php b/inc/classes/main/commands/web/class_WebRegisterCommand.php index af1d748..f4cc325 100644 --- a/inc/classes/main/commands/web/class_WebRegisterCommand.php +++ b/inc/classes/main/commands/web/class_WebRegisterCommand.php @@ -2,11 +2,11 @@ /** * A command class for the registration form * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 * @copyright Copyright(c) 2007, 2008 Roland Haeder, this is free software * @license GNU GPL 3.0 or any newer version - * @link http://www.ship-simu.org + * @link http://www.ship-simu.org * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -35,7 +35,7 @@ class WebRegisterCommand extends BaseCommand implements Commandable { $this->setObjectDescription("Command for the registration form"); // Create unique ID number - $this->createUniqueID(); + $this->generateUniqueId(); // Clean up a little $this->removeSystemArray(); @@ -93,19 +93,17 @@ class WebRegisterCommand extends BaseCommand implements Commandable { $templateInstance->assignTemplateWithVariable("footer", "footer"); // Load the register template - $templateInstance->loadCodeTemplate("register"); + $templateInstance->loadCodeTemplate("register_form"); // Assign the register template with the master template as a content ... ;) $templateInstance->compileTemplate(); - $templateInstance->assignTemplateWithVariable("register", "content"); + $templateInstance->assignTemplateWithVariable("register_form", "content"); // Load the master template $templateInstance->loadCodeTemplate($masterTemplate); // Set title - $title = ucfirst($requestInstance->getRequestElement($this->getConfigInstance()->readConfig('command_parameter'))); - if (empty($title)) $title = "Register"; - $templateInstance->assignVariable('title', $title); + $templateInstance->assignVariable('title', $this->getLanguageInstance()->getMessage('page_register_title')); // ... and all variables. This should be merged together in a pattern // to make things easier. A cache mechanism should be added between @@ -115,6 +113,17 @@ class WebRegisterCommand 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 + * @param $requestInstance An instance of a class with an Requestable interface + * @return void + */ + public function addExtraFilters (Controller $controllerInstance, Requestable $requestInstance) { + // Empty for now + } } // [EOF]