]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - classes/User.php
Update/add translator documentation.
[quix0rs-gnu-social.git] / classes / User.php
index c968375115a6bc9f6691f9ebeebdd87df2a47033..d8f813c765911ba9b433c97bcf03520b25ae6d31 100644 (file)
@@ -73,16 +73,21 @@ class User extends Memcached_DataObject
     /* the code above is auto generated do not remove the tag below */
     ###END_AUTOCODE
 
+    protected $_profile = -1;
+
     /**
      * @return Profile
      */
     function getProfile()
     {
-        $profile = Profile::staticGet('id', $this->id);
-        if (empty($profile)) {
-            throw new UserNoProfileException($this);
+        if (is_int($this->_profile) && $this->_profile == -1) { // invalid but distinct from null
+            $this->_profile = Profile::staticGet('id', $this->id);
+            if (empty($this->_profile)) {
+                throw new UserNoProfileException($this);
+            }
         }
-        return $profile;
+
+        return $this->_profile;
     }
 
     function isSubscribed($other)
@@ -488,28 +493,28 @@ class User extends Memcached_DataObject
 
     function noticesWithFriends($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
     {
-        $this->noticeInbox($offset, $limit, $since_id, $before_id);
+        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)
     {
-        $this->noticeInbox($offset, $limit, $since_id, $before_id);
+        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)
     {
-        $this->noticeInbox($offset, $limit, $since_id, $before_id);
+        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)
     {
-        $this->noticeInbox($offset, $limit, $since_id, $before_id);
+        return $this->noticeInbox($offset, $limit, $since_id, $before_id);
     }
 
     // DEPRECATED, use noticeInbox()
@@ -527,12 +532,12 @@ class User extends Memcached_DataObject
 
     function getSelfTags()
     {
-        return Profile_tag::getTags($this->id, $this->id);
+        return Profile_tag::getTagsArray($this->id, $this->id, $this->id);
     }
 
-    function setSelfTags($newtags)
+    function setSelfTags($newtags, $privacy)
     {
-        return Profile_tag::setTags($this->id, $this->id, $newtags);
+        return Profile_tag::setTags($this->id, $this->id, $newtags, $privacy);
     }
 
     function block($other)
@@ -804,7 +809,8 @@ class User extends Memcached_DataObject
 
     function repeatedToMe($offset=0, $limit=20, $since_id=null, $max_id=null)
     {
-        throw new Exception("Not implemented since inbox change.");
+        // TRANS: Exception thrown when trying view "repeated to me".
+        throw new Exception(_('Not implemented since inbox change.'));
     }
 
     function shareLocation()