X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=application%2Fship-simu%2Fmain%2Factions%2Fship-simu%2Fclass_ShipSimuProfileAction.php;h=56090bff1abe779177b10be40dc181468c405256;hp=d6a5649f89080ca71ec348e32f334727babbf483;hb=4f70843ae8428f051d70ccff5bb43fc4c03dda8d;hpb=ec3f744e23fa07132d0c5f435f1f4d75b8d5c481 diff --git a/application/ship-simu/main/actions/ship-simu/class_ShipSimuProfileAction.php b/application/ship-simu/main/actions/ship-simu/class_ShipSimuProfileAction.php index d6a5649..56090bf 100644 --- a/application/ship-simu/main/actions/ship-simu/class_ShipSimuProfileAction.php +++ b/application/ship-simu/main/actions/ship-simu/class_ShipSimuProfileAction.php @@ -2,11 +2,11 @@ /** * An action class for the profile page * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, this is free software + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Ship-Simu Developer Team * @license GNU GPL 3.0 or any newer version - * @link http://www.ship-simu.org + * @link http://www.shipsimu.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 @@ -21,7 +21,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -class ShipSimuProfileAction extends BaseAction implements PerformableAction { +class ShipSimuProfileAction extends BaseShipSimuAction implements PerformableAction { /** * Protected constructor * @@ -37,7 +37,7 @@ class ShipSimuProfileAction extends BaseAction implements PerformableAction { * * @return $actionInstance An instance of this action class */ - public final static function createShipSimuProfileAction () { + public static final function createShipSimuProfileAction () { // Get a new instance $actionInstance = new ShipSimuProfileAction(); @@ -51,10 +51,13 @@ class ShipSimuProfileAction extends BaseAction implements PerformableAction { * @param $requestInstance An instance of a class with an Requestable interface * @param $responseInstance An instance of a class with an Responseable interface * @return void - * @todo Maybe we need to do something later here */ + * @todo Maybe we need to do something later here */ public function execute (Requestable $requestInstance, Responseable $responseInstance) { - // Empty for now + // Call parent execute method + parent::execute($requestInstance, $responseInstance); + + // Add your code here... } }