X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=application%2Fship-simu%2Fmain%2Fstructures%2Fextended%2Fcabines%2Fship%2Fclass_PremierCabin.php;h=df8e09d7c321ecf91c9f0c40e187942047af9b3e;hb=ed7ca64368d512574efeda0f6b8d8e970d41aa1d;hp=3daabdabfd67db9dda3faa84d379b0e5ac6b5ea0;hpb=243934eb16b793ebd8cb0e43a968e17175ec5a75;p=shipsimu.git diff --git a/application/ship-simu/main/structures/extended/cabines/ship/class_PremierCabin.php b/application/ship-simu/main/structures/extended/cabines/ship/class_PremierCabin.php index 3daabda..df8e09d 100644 --- a/application/ship-simu/main/structures/extended/cabines/ship/class_PremierCabin.php +++ b/application/ship-simu/main/structures/extended/cabines/ship/class_PremierCabin.php @@ -4,9 +4,9 @@ * * @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, 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 @@ -19,25 +19,19 @@ * 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 . + * along with this program. If not, see . */ class PremierCabin extends BaseCabin implements TradeableItem, ConstructableShipPart { // Konstruktor - private function __construct () { + protected function __construct () { // Call parent constructor - parent::constructor(__CLASS__); - - // Debug message - if (((defined('DEBUG_CABIN')) || (defined('DEBUG_ALL'))) && (defined('DEBUG_CONSTRUCT'))) $this->getDebugInstance()->output(sprintf("[PremierCabin:] Konstruktor erreicht.
\n", - __CLASS__, - __LINE__ - )); + parent::__construct(__CLASS__); // Set description - $this->setPartDescr("Premier-Class-Kabine"); + $this->setObjectDescription("Premier-Class-Kabine"); // Generate unique ID number - $this->createUniqueID(); + $this->generateUniqueId(); // Clean up a little $this->removeSystemArray(); @@ -49,7 +43,7 @@ class PremierCabin extends BaseCabin implements TradeableItem, ConstructableShip $premierInstance = new PremierCabin(); // Debug message - if ((defined('DEBUG_CABIN')) || (defined('DEBUG_ALL'))) $premierInstance->getDebugInstance()->output("[PremierCabin:] Eine Premier-Kabine wird konstruiert...
\n"); + if ((defined('DEBUG_CABIN')) || (defined('DEBUG_ALL'))) $premierInstance->getDebugInstance()->output("[PremierCabin:] Eine Premier-Kabine wird konstruiert..."); // Abmasse extrahieren $premierInstance->extractDimensions($dim); @@ -66,47 +60,10 @@ class PremierCabin extends BaseCabin implements TradeableItem, ConstructableShip return $premierInstance; } - // Loesch-Methode fuer Anzahl Betten - public function removeNumBeds() { - if ((defined('DEBUG_CABIN')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[%s:%d] Anzahl Betten gelöscht.
\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öscht.
\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äume gelöscht.
\n", - __CLASS__, - __LINE__ - )); - unset($this->numRooms); - parent::removeNumRooms(); - } - // Overwritten method for tradeable items public function isTradeable () { return true; } - - /** - * Limits this object with an ObjectLimits instance - */ - public function limitObject (ObjectLimits $limitInstance) { - ApplicationEntryPoint::app_die("".__METHOD__." reached! Stub!"); - } } // [EOF]