]> git.mxchange.org Git - shipsimu.git/blobdiff - application/ship-simu/main/constructions/berths/class_Berth.php
createUniqueID -> generateUniqueId renamed, dataset criteria added, registration...
[shipsimu.git] / application / ship-simu / main / constructions / berths / class_Berth.php
index b802608ae172a3c545659fcb2c43e2bd88a7a0a3..512cf74e949c4cbec9ea579ec0914e3bb71bf0f4 100644 (file)
@@ -19,7 +19,7 @@
  * 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 Berth extends BaseConstruction {
        // Durchlaufende Nummer der Liegeplaetze
@@ -29,39 +29,15 @@ class Berth extends BaseConstruction {
        private $harborInstance = null;
 
        // Konstruktor
-       private function __construct () {
-               if (((defined('DEBUG_MODE')) || (defined('DEBUG_ALL'))) && (defined('DEBUG_CONSTRUCT'))) {
-                       $this->getDebugInstance()->output(sprintf("[%s:%d] Konstruktor erreicht.<br />\n",
-                               __CLASS__,
-                               __LINE__
-                       ));
-               }
-
+       protected function __construct () {
                // Call parent constructor
-               parent::constructor(__CLASS__);
+               parent::__construct(__CLASS__);
 
                // Set description
-               $this->setPartDescr("Liegeplatz");
+               $this->setObjectDescription("Liegeplatz");
 
                // Generate unique ID number
-               $this->createUniqueID();
-       }
-
-       /**
-        * Stub!
-        */
-       public function saveObjectToDatabase () {
-               $this->getDebugInstance()->output(sprintf("[%s:] Stub <strong>%s</strong> erreicht.",
-                       $this->__toString(),
-                       __FUNCTION__
-               ));
-       }
-
-       /**
-        * Limits this object with an ObjectLimits instance
-        */
-       public function limitObject (ObjectLimits $limitInstance) {
-               ApplicationEntryPoint::app_die("".__METHOD__." reached! Stub!");
+               $this->generateUniqueId();
        }
 }