You are here

function menutree_perm in MenuTree 6

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

Implementation of hook_perm().

File

./menutree.module, line 46
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',
  );
}