function og_vocab_og_permission in OG Vocabulary 7
Implements hook_og_permissions().
File
- ./
og_vocab.module, line 168 - Give each group its own system controlled vocabularies.
Code
function og_vocab_og_permission() {
$permissions = array(
'administer taxonomy' => array(
'title' => t('Administer vocabularies and terms'),
),
'edit terms' => array(
'title' => t('Edit terms in group'),
),
'delete terms' => array(
'title' => t('Delete terms in group'),
),
);
return $permissions;
}