function node_add_page
Same name and namespace in other branches
- 7.x drupal-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 drupal-6.x/
modules/ node/ node.module - Implementation of hook_menu().
Archivo
- drupal-6.x/
modules/ node/ node.pages.inc, line 20 - Page callbacks for adding, editing, deleting, and revisions management for content.
Código
function node_add_page() {
$item = menu_get_item();
$content = system_admin_menu_block($item);
return theme('node_add_list', $content);
}