node_edit
- Versions
- 4.6
node_edit($id)
Present a node editing form.
Code
modules/node.module, line 1472
<?php
function node_edit($id) {
global $user;
$node = node_load(array('nid' => $id));
drupal_set_title(check_plain($node->title));
$output = node_form($node);
return $output;
}
?>Login or register to post comments 