Copyright updated, menu class added for 'home'
[shipsimu.git] / application / ship-simu / main / class_
index 634096c87e941bb448a7ff1867a14f28bfa68b40..f87bf80e28ef67a760c14926fa863183b81151ee 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @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
  *
@@ -39,18 +39,14 @@ class ??? extends BaseFrameworkSystem {
        /**
         * Creates an instance of this money bank class
         *
-        * @param       $userInstance   A class instance of a user object
-        * @return      $bankInstance   An instance of this class
+        * @return      $???Instance    An instance of this class
         */
-       public final static function create??? (ManageableAccount $userInstance) {
+       public final static function create??? () {
                // Get a new instance
-               $moneyInstance = new ???();
-
-               // Set the user instance
-               $moneyInstance->setUserInstance($userInstance);
+               $???Instance = new ???();
 
                // Return the prepared instance
-               return $moneyInstance;
+               return $???Instance;
        }
 }