From f75291273ffb60acc66b02329224044af98953a0 Mon Sep 17 00:00:00 2001 From: dave Date: Wed, 21 Apr 2010 11:33:29 +0000 Subject: a simple function which can be used to restrict group access options git-svn-id: http://code.elgg.org/elgg/trunk@5831 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/groups/start.php | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'mod/groups/start.php') diff --git a/mod/groups/start.php b/mod/groups/start.php index bca4d1500..9dfe74bf7 100644 --- a/mod/groups/start.php +++ b/mod/groups/start.php @@ -580,6 +580,17 @@ return $invitations; } + + /** + * Function to use on groups for access. It will house private, loggedin, public, + * and the group itself. This is when you don't want other groups or channels in the access options available + * Returns an array + **/ + + function group_access_options($group){ + $access_array = array(0 => 'private',1 => 'logged in users',2 => 'public',$group->group_acl => 'Group: ' . $group->name ); + return $access_array; + } register_extender_url_handler('group_topicpost_url','annotation', 'group_topic_post'); -- cgit v1.2.3