function term_permissions_help in Taxonomy Term Permissions 6
Same name and namespace in other branches
- 7 term_permissions.module \term_permissions_help()
Implementation of hook_help().
File
- ./
term_permissions.module, line 11 - Allows access to terms in a vocabulary to be limited by user or role.
Code
function term_permissions_help($path, $arg) {
switch ($path) {
case 'admin/help#term_permissions':
$output = '<p>' . t('This module allows taxonomy administrators the ability to restrict setting individual terms on nodes by user or role. If a user is unable to set any terms for a required vocabulary, they are blocked from adding or editing content with that vocabulary.') . '</p>';
$output .= '<p>' . t('To add permissions for a term, go to Administer >> Content Management >> Taxonomy, and add or edit a term. If the permissions are left blank, the term is available to all users.') . '</p>';
return $output;
}
}