]> git.mxchange.org Git - shipsimu.git/blobdiff - application/ship-simu/main/user/class_ShipSimuGuest.php
Fix for wrong base class
[shipsimu.git] / application / ship-simu / main / user / class_ShipSimuGuest.php
index a410917829c900182a1f2cd51616981feaabe3d4..e4edbc5e94196611e3f8a41077ba1405d15ee99d 100644 (file)
@@ -21,7 +21,7 @@
  * 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 ShipSimuGuest extends BaseUser implements ManageableGuest, Registerable {
+class ShipSimuGuest extends ShipSimuBaseUser implements ManageableGuest, Registerable {
        // Exceptions
        const EXCEPTION_USERNAME_NOT_FOUND   = 0x170;
        const EXCEPTION_USER_EMAIL_NOT_FOUND = 0x171;
@@ -39,12 +39,6 @@ class ShipSimuGuest extends BaseUser implements ManageableGuest, Registerable {
 
                // Call parent constructor
                parent::__construct($className);
-
-               // Set part description
-               $this->setObjectDescription("Special ship-simu class");
-
-               // Create unique ID number
-               $this->generateUniqueId();
        }
 
        /**
@@ -111,17 +105,6 @@ class ShipSimuGuest extends BaseUser implements ManageableGuest, Registerable {
        public function flushPendingUpdates () {
                // No updates will be flushed to database!
        }
-
-       /**
-        * Adds data for later complete update
-        *
-        * @param       $column         Column we want to update
-        * @param       $value          New value to store in database
-        * @return      void
-        */
-       public function addUpdateData ($column, $value) {
-               // Nothing shall be updated by user him/her self
-       }
 }
 
 // [EOF]