X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=ship-simu%2Fapplication%2Fship-simu%2Fmain%2Fstructures%2Fextended%2Fcabines%2Fclass_BaseCabin.php;fp=ship-simu%2Fapplication%2Fship-simu%2Fmain%2Fstructures%2Fextended%2Fcabines%2Fclass_BaseCabin.php;h=0000000000000000000000000000000000000000;hp=a70be56de7a16c28ecb47ed67cac5122d1aae134;hb=ff66822b5fb6a92f5dc8af55290ecb89ec7f1aaf;hpb=d3dc161881e77cb39100a7d9220f520a5375bb26 diff --git a/ship-simu/application/ship-simu/main/structures/extended/cabines/class_BaseCabin.php b/ship-simu/application/ship-simu/main/structures/extended/cabines/class_BaseCabin.php deleted file mode 100644 index a70be56..0000000 --- a/ship-simu/application/ship-simu/main/structures/extended/cabines/class_BaseCabin.php +++ /dev/null @@ -1,73 +0,0 @@ -getDebugInstance()->output(sprintf("[%s:%d] Konstruktor erreicht.
\n", - __CLASS__, - __LINE__ - )); - } - - // Beschreibung setzen - $this->setPartDescr("Kabine"); - - // Maybe clean up a little - if ($class == __CLASS__) { - $this->removeSystemArray(); - } - } - - // Konstruktor aufrufen - public function constructor ($class) { - $this->__construct($class); - } - - // Allgemeine Kabine erstellen - public static function createBaseCabin () { - // Instanz holen - $cabinInstance = new BaseCabin(__CLASS__); - - // Debug message - if ((defined('DEBUG_CABIN')) || (defined('DEBUG_ALL'))) $cabinInstance->getDebugInstance()->output(sprintf("[%s:%d] Eine allgemeine Kabine wird erstellt.
\n", - __CLASS__, - __LINE__ - )); - - // Unique-ID erzeugen - $cabinInstance->createUniqueID(); - - // Instanz zurueckgeben - return $cabinInstance; - } - - // Is this a cabin? - public function isCabin () { - return ($this->isClass("BaseCabin")); - } - - /** - * Stub! - */ - public function saveObjectToDatabase () { - $this->getDebugInstance()->output(sprintf("[%s:] Stub %s erreicht.", - $this->__toString(), - __FUNCTION__ - )); - } - - /** - * Limits this object with an ObjectLimits instance - */ - public function limitObject (ObjectLimits $limitInstance) { - ApplicationEntryPoint::app_die("".__METHOD__." reached! Stub!"); - } -} - -// [EOF] -?>