You are here

function admin_menu_help in Administration menu 5

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

Implementation of hook_help().

File

./admin_menu.module, line 6

Code

function admin_menu_help($section) {
  switch ($section) {
    case 'admin/modules#description':
      return t("Renders the administer menu tree as dropdown menu at the top of the window.");
  }
}