]> git.mxchange.org Git - shipsimu.git/blobdiff - application/ship-simu/main/drives/motor/class_Motor.php
Translations to english and debug messages removed (missing files added)
[shipsimu.git] / application / ship-simu / main / drives / motor / class_Motor.php
index 9e347a849a38ada7bab07e29a8da16afdaae9bb4..77e2ba9b43148fd94f5ffc92fc70ab555cceec93 100644 (file)
  * 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/>.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 class Motor extends BaseDrive implements TradeableItem, ConstructableShipPart {
        // Constructor
-       private function __construct() {
+       protected function __construct() {
                // Call parent constructor
-               parent::constructor(__CLASS__);
-
-               // Debug message
-               if (((defined('DEBUG_DRIVE')) || (defined('DEBUG_ALL'))) && (defined('DEBUG_CONSTRUCT'))) {
-                       $this->getDebugInstance()->output(sprintf("[%s:%d] Konstruktor erreicht.<br />\n",
-                               __CLASS__,
-                               __LINE__
-                       ));
-               }
+               parent::__construct(__CLASS__);
 
                // Set description
-               $this->setPartDescr("Namenloser Motor");
+               $this->setObjectDescription("Namenloser Motor");
 
                // Generate unique ID number
                $this->createUniqueID();
@@ -58,7 +50,7 @@ class Motor extends BaseDrive implements TradeableItem, ConstructableShipPart {
                ));
 
                // Beschreibung und Abmasse setzen
-               $motorInstance->setPartDescr($descr);
+               $motorInstance->setObjectDescription($descr);
                $motorInstance->setWidth($w);
                $motorInstance->setHeight($h);
                $motorInstance->setLength($l);