You are here

function node_configure_rebuild_confirm_submit in Drupal 5

Same name and namespace in other branches
  1. 6 modules/node/node.admin.inc \node_configure_rebuild_confirm_submit()
  2. 7 modules/node/node.admin.inc \node_configure_rebuild_confirm_submit()

Handler for wipe confirmation

File

modules/node/node.module, line 1087
The core that allows content to be submitted to the site. Modules and scripts may programmatically submit nodes using the usual form API pattern.

Code

function node_configure_rebuild_confirm_submit($form_id, &$form) {
  node_access_rebuild();
  drupal_set_message(t('The node access table has been rebuilt.'));
  return 'admin/content/node-settings';
}