]> git.mxchange.org Git - shipsimu.git/commitdiff
Deprecated method addUpdateData() removed
authorRoland Häder <roland@mxchange.org>
Tue, 1 Jul 2008 13:18:54 +0000 (13:18 +0000)
committerRoland Häder <roland@mxchange.org>
Tue, 1 Jul 2008 13:18:54 +0000 (13:18 +0000)
application/ship-simu/main/user/class_ShipSimuGuest.php
application/ship-simu/main/user/class_ShipSimuMember.php
inc/classes/interfaces/user/class_ManageableAccount.php
inc/classes/main/user/guest/class_Guest.php
inc/classes/main/user/member/class_Member.php

index a410917829c900182a1f2cd51616981feaabe3d4..b5438a23d2df0fb2e0dd28cf56325d0e79e492eb 100644 (file)
@@ -111,17 +111,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]
index 531e8c7470b9029047af7299cd6fbfcc4b603ef0..6ccc8f24247ede2a681b0abaa2683a335e05f60b 100644 (file)
@@ -125,19 +125,6 @@ class ShipSimuMember extends BaseUser implements ManageableMember, Registerable,
                return $userInstance;
        }
 
-       /**
-        * Adds data for later complete update
-        *
-        * @param       $column         Column we want to update
-        * @param       $value          New value to store in database
-        * @return      void
-        * @deprecated
-        */
-       public function addUpdateData ($column, $value) {
-               $this->deprecatedMethod("Please use updateDatabaseField() instead!");
-               $this->updateDatabaseField($column, $value);
-       }
-
        /**
         * Updates the last activity timestamp and last performed action in the
         * database result. You should call flushPendingUpdates() to flush these updates
index 7da32aee95b5d2a5845f31397bb67a3c3e6be912..3e88853898be460170b5506a1655e807d507b61e 100644 (file)
@@ -44,15 +44,6 @@ interface ManageableAccount extends FrameworkInterface {
         * @return      $matches                        Wether the supplied password hash matches
         */
        function ifPasswordHashMatches (Requestable $requestInstance);
-
-       /**
-        * Adds data for later complete update
-        *
-        * @param       $column         Column we want to update
-        * @param       $value          New value to store in database
-        * @return      void
-        */
-       function addUpdateData ($column, $value);
 }
 
 //
index ebaf5086bbe3e74c0fe105490475f648ddff9cfa..7aed6242d28329d7caee420b25cfb4dc61cd5d7d 100644 (file)
@@ -107,17 +107,6 @@ class Guest 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]
index eb633e4536ff548cd8fbc9c2716705516f1489b8..b523f50c79a19d8058215d5882f8f2c9cb37a274 100644 (file)
@@ -121,19 +121,6 @@ class Member extends BaseUser implements ManageableMember, Registerable, Updatea
                return $userInstance;
        }
 
-       /**
-        * Adds data for later complete update
-        *
-        * @param       $column         Column we want to update
-        * @param       $value          New value to store in database
-        * @return      void
-        * @deprecated
-        */
-       public function addUpdateData ($column, $value) {
-               $this->deprecatedMethod("Please use updateDatabaseField() instead!");
-               $this->updateDatabaseField($column, $value);
-       }
-
        /**
         * Updates the last activity timestamp and last performed action in the
         * database result. You should call flushPendingUpdates() to flush these updates