Method constructor() removed, several small fixes
[shipsimu.git] / application / ship-simu / main / structures / extended / cabines / ship / class_LowCabin.php
index de8393ad6c628fdb3802de44ae8b38b895d2ab85..46e9880cfe5372faec1ee46b0e8d25d7227a2bf1 100644 (file)
@@ -1,10 +1,31 @@
 <?php
-// 2-Sterne-Kabinen
-class LowCabin extends BaseCabin implements ItemIsTradeable, ConstructableShipPart {
+/**
+ * Cabins in the lower decks may use this class
+ *
+ * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @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
+ *
+ * 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
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+class LowCabin extends BaseCabin implements TradeableItem, ConstructableShipPart {
        // Konstruktor
-       private function __construct () {
+       protected function __construct () {
                // Call parent constructor
-               parent::constructor(__CLASS__);
+               parent::__construct(__CLASS__);
 
                // Debug message
                if (((defined('DEBUG_CABIN')) || (defined('DEBUG_ALL'))) && (defined('DEBUG_CONSTRUCT'))) $this->getDebugInstance()->output(sprintf("[%s:%d] Konstruktor erreicht.<br />\n",
@@ -13,7 +34,7 @@ class LowCabin extends BaseCabin implements ItemIsTradeable, ConstructableShipPa
                ));
 
                // Set description
-               $this->setPartDescr("2Star-Class-Kabine");
+               $this->setObjectDescription("2Star-Class-Kabine");
 
                // Generate unique ID number
                $this->createUniqueID();
@@ -23,8 +44,8 @@ class LowCabin extends BaseCabin implements ItemIsTradeable, ConstructableShipPa
        }
 
        // 2-Sterne-Klasse erstellen
-       public static function createLowCabin ($numLuxury, $numRooms, $numBeds, $dim) {
-               // Instanz holen
+       public final static function createLowCabin ($numLuxury, $numRooms, $numBeds, $dim) {
+               // Get new instance
                $lowInstance = new LowCabin();
 
                // Debug message
@@ -48,36 +69,6 @@ class LowCabin extends BaseCabin implements ItemIsTradeable, ConstructableShipPa
                return $lowInstance;
        }
 
-       // Loesch-Methode fuer Anzahl Betten
-       public function removeNumBeds() {
-               if ((defined('DEBUG_CABIN')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[%s:%d] Anzahl Betten gel&ouml;scht.<br />\n",
-                       __CLASS__,
-                       __LINE__
-               ));
-               unset($this->numBeds);
-               parent::removeNumBeds();
-       }
-
-       // Loesch-Methode fuer Anzahl Kabinen
-       public function removeNumCabin() {
-               if ((defined('DEBUG_CABIN')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[%s:%d] Anzahl Kabinen gel&ouml;scht.<br />\n",
-                       __CLASS__,
-                       __LINE__
-               ));
-               unset($this->numCabin);
-               parent::removeNumCabin();
-       }
-
-       // Loesch-Methode fuer Anzahl Raeume
-       public function removeNumRooms() {
-               if ((defined('DEBUG_CABIN')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[%s:%d] Anzahl R&auml;ume gel&ouml;scht.<br />\n",
-                       __CLASS__,
-                       __LINE__
-               ));
-               unset($this->numRooms);
-               parent::removeNumRooms();
-       }
-
        // Overwritten method for tradeable items
        public function isTradeable () {
                return true;