You are here

function spaces_og_permission in Spaces 7.3

Same name and namespace in other branches
  1. 7 spaces_og/spaces_og.module \spaces_og_permission()

Implements hook_permission().

File

spaces_og/spaces_og.module, line 225

Code

function spaces_og_permission() {
  return array(
    'view users outside groups' => array(
      'title' => t('view users outside groups'),
      'description' => t('Allows group members to see other users outside of their own groups.'),
    ),
    'manage group space' => array(
      'title' => t('manage group space'),
      'description' => 'Manage group space. e.g. features for this group.',
    ),
  );
}