function 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 modules/
node/ node.module - Implements hook_menu().
File
-
modules/
node/ node.pages.inc, line 24
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,
));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.