function node_add_page
7.x node.pages.inc | node_add_page() |
6.x node.pages.inc | node_add_page() |
Page callback: Displays add content links for available content types.
Redirects to node/add/[type] if only one content type is available.
See also
1 string reference to 'node_add_page'
- node_menu in drupal-7.x/
modules/ node/ node.module - Implements hook_menu().
File
- drupal-7.x/
modules/ node/ node.pages.inc, line 24 - 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);
// Bypass the node/add listing if only one content type is available.
if (count($content) == 1) {
$item = array_shift($content);
drupal_goto($item['href']);
}
return theme('node_add_list', array('content' => $content));
}