diff options
Diffstat (limited to 'mod/groups/start.php')
-rw-r--r-- | mod/groups/start.php | 11 |
1 files changed, 11 insertions, 0 deletions
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'); |