X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=classes%2FRemote_profile.php;h=77bfbcd99c201058b69d3139222292775ec310da;hb=f7d69c38af60fbc984743d20340bd0fd02fd6d77;hp=9f7bfeadcc79e40582e95ab74c5d2ba22cb7330c;hpb=df86aa721455fde537608d5faeaaf92075afb738;p=quix0rs-gnu-social.git diff --git a/classes/Remote_profile.php b/classes/Remote_profile.php index 9f7bfeadcc..77bfbcd99c 100644 --- a/classes/Remote_profile.php +++ b/classes/Remote_profile.php @@ -43,4 +43,15 @@ class Remote_profile extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + + function hasRight($right) + { + $profile = Profile::staticGet($this->id); + if ($profile) { + return $profile->hasright($right); + } else { + // TRANS: Exception thrown when a right for a non-existing user profile is checked. + throw new Exception(_("Missing profile.")); + } + } }