]> git.mxchange.org Git - shipsimu.git/blobdiff - application/ship-simu/main/structures/extended/cabines/ship/class_PremierCabin.php
Copyright updated, menu class added for 'home'
[shipsimu.git] / application / ship-simu / main / structures / extended / cabines / ship / class_PremierCabin.php
index df76e31f9f2ce22c1a1581604bcc818529dd0348..b948f2025105f351565a319b797f903adf2d47b8 100644 (file)
@@ -4,9 +4,9 @@
  *
  * @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
+ * @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
@@ -26,15 +26,6 @@ class PremierCabin extends BaseCabin implements TradeableItem, ConstructableShip
        protected function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
-
-               // Set description
-               $this->setObjectDescription("Premier-Class-Kabine");
-
-               // Generate unique ID number
-               $this->generateUniqueId();
-
-               // Clean up a little
-               $this->removeSystemArray();
        }
 
        // Premier-Kabine erstellen
@@ -42,9 +33,6 @@ class PremierCabin extends BaseCabin implements TradeableItem, ConstructableShip
                // Get new instance
                $premierInstance = new PremierCabin();
 
-               // Debug message
-               if ((defined('DEBUG_CABIN')) || (defined('DEBUG_ALL'))) $premierInstance->getDebugInstance()->output("[PremierCabin:] Eine Premier-Kabine wird konstruiert...<br />\n");
-
                // Abmasse extrahieren
                $premierInstance->extractDimensions($dim);
 
@@ -64,13 +52,6 @@ class PremierCabin extends BaseCabin implements TradeableItem, ConstructableShip
        public function isTradeable () {
                return true;
        }
-
-       /**
-        * Limits this object with an ObjectLimits instance
-        */
-       public function limitObject (ObjectLimits $limitInstance) {
-               ApplicationEntryPoint::app_die("".__METHOD__." reached! Stub!");
-       }
 }
 
 // [EOF]