You are here

function menutree_perm in MenuTree 5

Same name and namespace in other branches
  1. 6 menutree.module \menutree_perm()

Implementation of hook_perm().

File

./menutree.module, line 30
This module provides a simple "site map" tree based on the menu system rather than on taxonomies.

Code

function menutree_perm() {
  return array(
    'view site tree',
    'administer menu tree',
  );
}