diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-21 13:57:18 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-21 13:57:18 -0500 |
commit | 8516ccfb9db5fd0e33f04abd5e63f11a909a3cfd (patch) | |
tree | 6bac10bedc1f06fcc31ec5fe6a02eb64d702c5da /classes/Profile.php | |
parent | 32601065372149e652cf287af02361cde4663b3e (diff) |
move membership/adminship tests to profile
Diffstat (limited to 'classes/Profile.php')
-rw-r--r-- | classes/Profile.php | 34 |
1 files changed, 32 insertions, 2 deletions
diff --git a/classes/Profile.php b/classes/Profile.php index 31bdf71d5..ab5a48e57 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -121,7 +121,7 @@ class Profile extends Memcached_DataObject return $avatar; } - function crop_avatars($x, $y, $w, $h) + function crop_avatars($x, $y, $w, $h) { $avatar = $this->getOriginalAvatar(); @@ -139,7 +139,7 @@ class Profile extends Memcached_DataObject return true; } - function delete_avatars($original=true) + function delete_avatars($original=true) { $avatar = new Avatar(); $avatar->profile_id = $this->id; @@ -187,4 +187,34 @@ class Profile extends Memcached_DataObject 'profile:notices:'.$this->id, $offset, $limit, $since_id, $before_id); } + + function isMember($group) + { + $mem = new Group_member(); + + $mem->group_id = $group->id; + $mem->profile_id = $this->id; + + if ($mem->find()) { + return true; + } else { + return false; + } + } + + function isAdmin($group) + { + $mem = new Group_member(); + + $mem->group_id = $group->id; + $mem->profile_id = $this->id; + $mem->is_admin = 1; + + if ($mem->find()) { + return true; + } else { + return false; + } + } + } |