You are here

function menutree_display_page in MenuTree 5

Same name and namespace in other branches
  1. 6 menutree.pages.inc \menutree_display_page()

Menu callback; Display a menu tree for a single specified menu.

Parameters

$pid: The menu to display. If none is specified, we default to the Primary Links menu.

1 string reference to 'menutree_display_page'
menutree_menu in ./menutree.module
Implementation of hook_menu().

File

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

Code

function menutree_display_page($pid = 0) {
  return menutree_display($pid, MENUTREE_TITLE_PAGE);
}