]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Removed deprecated Inbox functions not in use from User
authorMikael Nordfeldth <mmn@hethane.se>
Thu, 6 Mar 2014 02:21:55 +0000 (03:21 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Thu, 6 Mar 2014 02:41:50 +0000 (03:41 +0100)
classes/User.php

index 2b390bb90bbdea80a26555c0f53375ea71772bf3..540965209d9b4a1b9863cbce6cfd6a08b6c16ac7 100644 (file)
@@ -494,47 +494,6 @@ class User extends Managed_DataObject
         return $this->getProfile()->favoriteNotices($own, $offset, $limit, $since_id, $max_id);
     }
 
-    function noticeInbox($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
-    {
-        $stream = new InboxNoticeStream($this);
-        return $stream->getNotices($offset, $limit, $since_id, $before_id);
-    }
-
-    // DEPRECATED, use noticeInbox()
-
-    function noticesWithFriends($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
-    {
-        return $this->noticeInbox($offset, $limit, $since_id, $before_id);
-    }
-
-    // DEPRECATED, use noticeInbox()
-
-    function noticesWithFriendsThreaded($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
-    {
-        return $this->noticeInbox($offset, $limit, $since_id, $before_id);
-    }
-
-    // DEPRECATED, use noticeInbox()
-
-    function noticeInboxThreaded($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
-    {
-        return $this->noticeInbox($offset, $limit, $since_id, $before_id);
-    }
-
-    // DEPRECATED, use noticeInbox()
-
-    function friendsTimeline($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
-    {
-        return $this->noticeInbox($offset, $limit, $since_id, $before_id);
-    }
-
-    // DEPRECATED, use noticeInbox()
-
-    function ownFriendsTimeline($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
-    {
-        $this->noticeInbox($offset, $limit, $since_id, $before_id);
-    }
-
     function blowFavesCache()
     {
         $this->getProfile()->blowFavesCache();