diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-22 15:57:33 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-22 15:57:33 +0000 |
commit | 5ee55d6f037671915f024fcb9ccd51be4f89eb30 (patch) | |
tree | 3d2659ecc0bc672b32bcdc2b038c5e9903aaa905 /engine/lib/group.php | |
parent | a25ce4e3c73d36c2eb561c0dceb0168ffb54ec88 (diff) | |
download | elgg-5ee55d6f037671915f024fcb9ccd51be4f89eb30.tar.gz elgg-5ee55d6f037671915f024fcb9ccd51be4f89eb30.tar.bz2 |
Groups now have usernames of a sort
git-svn-id: https://code.elgg.org/elgg/trunk@1491 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/group.php')
-rw-r--r-- | engine/lib/group.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/engine/lib/group.php b/engine/lib/group.php index dee522099..40bf7a674 100644 --- a/engine/lib/group.php +++ b/engine/lib/group.php @@ -120,6 +120,15 @@ return can_write_to_container($user_guid, $this->getGUID()); } + public function get($name) {
+
+ if ($name == 'username') {
+ return 'group:' . $this->getGUID();
+ }
+ return parent::get($name);
+
+ }
+
/**
* Start friendable compatibility block:
*
@@ -227,6 +236,7 @@ return get_group_members($this->getGUID(), $limit, $offset, 0 , $count); }
+
/** * Returns whether the current group is public membership or not. @@ -791,5 +801,4 @@ return get_entities_from_relationship('member', $user_guid, true); } - ?>
\ No newline at end of file |