function node_delete_confirm_submit

Executes node deletion.

See also

node_delete_confirm()

File

modules/node/node.pages.inc, line 543

Code

function node_delete_confirm_submit($form, &$form_state) {
    if ($form_state['values']['confirm']) {
        $node = node_load($form_state['values']['nid']);
        node_delete($form_state['values']['nid']);
        cache_clear_all();
        watchdog('content', '@type: deleted %title.', array(
            '@type' => $node->type,
            '%title' => $node->title,
        ));
        drupal_set_message(t('@type %title has been deleted.', array(
            '@type' => node_type_get_name($node),
            '%title' => $node->title,
        )));
    }
    $form_state['redirect'] = '<front>';
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.