You are here

function admin_menu_perm in Administration menu 6

Same name and namespace in other branches
  1. 5.3 admin_menu.module \admin_menu_perm()
  2. 5 admin_menu.module \admin_menu_perm()
  3. 5.2 admin_menu.module \admin_menu_perm()
  4. 6.3 admin_menu.module \admin_menu_perm()

Implementation of hook_perm().

File

./admin_menu.module, line 29
Renders a menu tree for administrative purposes as a dropdown menu at the top of the window.

Code

function admin_menu_perm() {
  return array(
    'access administration menu',
    'display drupal links',
  );
}