function node_page_edit

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

Menu callback; presents the node editing form, or redirects to delete confirmation.

1 string reference to 'node_page_edit'
node_menu in drupal-6.x/modules/node/node.module
Implementation of hook_menu().

Archivo

drupal-6.x/modules/node/node.pages.inc, line 12
Page callbacks for adding, editing, deleting, and revisions management for content.

Código

function node_page_edit($node) {
  drupal_set_title(check_plain($node->title));
  return drupal_get_form($node->type . '_node_form', $node);
}