You are here

function taxonomy_list_perm in Taxonomy List 6.2

Same name and namespace in other branches
  1. 5.2 taxonomy_list.module \taxonomy_list_perm()
  2. 5 taxonomy_list.module \taxonomy_list_perm()
  3. 6 taxonomy_list.module \taxonomy_list_perm()
  4. 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',
  );
}