X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=ship-simu%2Fapplication%2Fship-simu%2Fmain%2Fstructures%2Fextended%2Fcabines%2Fship%2Fclass_LuxuryCabin.php;fp=ship-simu%2Fapplication%2Fship-simu%2Fmain%2Fstructures%2Fextended%2Fcabines%2Fship%2Fclass_LuxuryCabin.php;h=0000000000000000000000000000000000000000;hp=bc36d6e3f4465b5ab7c4a6411ee0392a1813882f;hb=ff66822b5fb6a92f5dc8af55290ecb89ec7f1aaf;hpb=d3dc161881e77cb39100a7d9220f520a5375bb26 diff --git a/ship-simu/application/ship-simu/main/structures/extended/cabines/ship/class_LuxuryCabin.php b/ship-simu/application/ship-simu/main/structures/extended/cabines/ship/class_LuxuryCabin.php deleted file mode 100644 index bc36d6e..0000000 --- a/ship-simu/application/ship-simu/main/structures/extended/cabines/ship/class_LuxuryCabin.php +++ /dev/null @@ -1,95 +0,0 @@ -getDebugInstance()->output(sprintf("[%s:%d] Konstruktor erreicht.
\n", - __CLASS__, - __LINE__ - )); - - // Beschreibung setzen - $this->setPartDescr("Luxuskabine"); - - // Unique-ID erzeugen - $this->createUniqueID(); - - // Clean up a little - $this->removeSystemArray(); - } - - // Eine Luxuskabine erstellen - public static function createLuxuryCabin ($numLuxury, $numRooms, $numBeds, $dim) { - // Instanz holen - $luxuryInstance = new LuxuryCabin(); - - // Debug message - if ((defined('DEBUG_CABIN')) || (defined('DEBUG_ALL'))) $luxuryInstance->getDebugInstance()->output(sprintf("[%s:%d] Eine Luxuskabine wird konstruiert...
\n", - __CLASS__, - __LINE__ - )); - - // Abmasse extrahieren - $luxuryInstance->extractDimensions($dim); - - // Den Rest auch setzen - $luxuryInstance->setNumCabin($numLuxury); - $luxuryInstance->setNumRooms($numRooms); - $luxuryInstance->setNumBeds($numBeds); - - // Nicht noetig! - $luxuryInstance->removePartInstance(); - - // Instanz zurueckgeben - return $luxuryInstance; - } - - // 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] -?>