function taxonomy_list_perm in Taxonomy List 5.2
Same name and namespace in other branches
- 5 taxonomy_list.module \taxonomy_list_perm()
- 6.2 taxonomy_list.module \taxonomy_list_perm()
- 6 taxonomy_list.module \taxonomy_list_perm()
- 7 taxonomy_list.module \taxonomy_list_perm()
Implementation of hook_perm().
File
- ./
taxonomy_list.module, line 21 - List all terms in a vocabulary.
Code
function taxonomy_list_perm() {
return array(
'access taxonomy_list',
'administer taxonomy_list',
);
}