function taxonomy_access_role_edit_title in Taxonomy Access Control 7
Title callback: Returns the title for the role edit form.
1 string reference to 'taxonomy_access_role_edit_title'
- taxonomy_access_menu in ./
taxonomy_access.module - Implements hook_menu().
File
- ./
taxonomy_access.module, line 181 - Allows administrators to specify access control for taxonomy categories.
Code
function taxonomy_access_role_edit_title($rid) {
$roles = _taxonomy_access_user_roles();
return t('Access rules for @role', array(
'@role' => $roles[$rid],
));
}