]> git.mxchange.org Git - shipsimu.git/blobdiff - application/ship-simu/main/constructions/class_BaseConstruction.php
Method constructor() removed, several small fixes
[shipsimu.git] / application / ship-simu / main / constructions / class_BaseConstruction.php
index d97f279f8fd124610e1547ba5fccb432939e5579..24beeddd4b8ff9d5ed755db8b90e42942b1b7c49 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 BaseConstruction extends BaseSimulator {
        // Tiefgang fuer z.B. Trockdocks
        private $draught = 0;
 
        // Konstruktor
-       private function __construct ($class) {
+       protected function __construct ($class) {
                // Eltern-Konstrutor aufrufen
-               parent::constructor($class);
+               parent::__construct($class);
 
                // Debug message
                if ((defined('DEBUG_CORE')) && (defined('DEBUG_CONSTRUCT'))) $this->getDebugInstance()->output(sprintf("[%s:] Konstruktor erreicht.<br />\n",
@@ -36,21 +36,11 @@ class BaseConstruction extends BaseSimulator {
                ));
 
                // Set description
-               $this->setPartDescr("Namenlose Landkonstruktion");
+               $this->setObjectDescription("Namenlose Landkonstruktion");
 
                // Clean up a little
                $this->removeNumberFormaters();
        }
-
-       /**
-        * Calls the private constructor
-        *
-        * @param       $class  The class' name
-        * @return      void
-        */
-       public function constructor ($class) {
-               $this->__construct($class);
-       }
 }
 
 // [EOF]