function og_invite_people_og_permission in OG Invite People 7.2
Same name and namespace in other branches
- 7 og_invite_people.module \og_invite_people_og_permission()
Implement hook_og_permission().
File
- ./
og_invite_people.module, line 136 - OG Invite People
Code
function og_invite_people_og_permission() {
$items = array();
$items['invite people'] = array(
'title' => t('Invite people'),
'description' => t('Users may invite other users to the group without approval.'),
'default role' => array(
OG_ADMINISTRATOR_ROLE,
),
);
return $items;
}