| Versionen | |
|---|---|
| drupal6 – drupal7 | node_page_edit($node) |
Menu callback; presents the node editing form, or redirects to delete confirmation.
modules/
<?php
function node_page_edit($node) {
drupal_set_title(check_plain($node->title));
return drupal_get_form($node->type . '_node_form', $node);
}
?>
Kommentare
Kommentar hinzufügen