Same name and namespace in other branches
  1. 7.x modules/node/node.pages.inc \node_add_page()

Page callback: Displays add content links for available content types.

1 string reference to 'node_add_page'
node_menu in modules/node/node.module
Implementation of hook_menu().

File

modules/node/node.pages.inc, line 20
Page callbacks for adding, editing, deleting, and revisions management for content.

Code

function node_add_page() {
  $item = menu_get_item();
  $content = system_admin_menu_block($item);
  return theme('node_add_list', $content);
}