]> git.mxchange.org Git - shipsimu.git/blobdiff - application/ship-simu/main/parts/maschineroom/class_MaschineRoom.php
Method constructor() removed, several small fixes
[shipsimu.git] / application / ship-simu / main / parts / maschineroom / class_MaschineRoom.php
index 0e3f472f033054a5e421eb58c81cb4fc2412a3b5..fdde3262b25f5be2f6bfffdb90edaa4083fcbc9a 100644 (file)
@@ -1,11 +1,31 @@
 <?php
-// Der Maschinenraum ist etwas anderes als eine Kabine, etc. !
-// Daher hat er eine eigene Klasse
+/**
+ * A maschine room class for really huge ships
+ *
+ * @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 MaschineRoom extends BaseShipPart {
        // Constructor
-       private function __construct () {
-               // Eltern-Konstruktor aufrufen
-               parent::constructor(__CLASS__);
+       protected function __construct () {
+               // Call parent constructor
+               parent::__construct(__CLASS__);
 
                // Debug message
                if (((defined('DEBUG_MODE')) || (defined('DEBUG_ALL'))) && (defined('DEBUG_CONSTRUCT'))) {
@@ -15,10 +35,10 @@ class MaschineRoom extends BaseShipPart {
                        ));
                }
 
-               // Beschreibung setzen
-               $this->setPartDescr("Maschinenraum");
+               // Set description
+               $this->setObjectDescription("Maschinenraum");
 
-               // Unique-ID erzeugen
+               // Generate unique ID number
                $this->createUniqueID();
 
                // Clean up a little
@@ -26,8 +46,8 @@ class MaschineRoom extends BaseShipPart {
        }
 
        // Maschinenraum erstellen
-       public static function createMaschineRoom () {
-               // Instanz holen
+       public final static function createMaschineRoom () {
+               // Get new instance
                $roomInstance = new MaschineRoom();
 
                // Debug message