function node_configure_rebuild_confirm in Drupal 5
Same name and namespace in other branches
- 6 modules/node/node.admin.inc \node_configure_rebuild_confirm()
- 7 modules/node/node.admin.inc \node_configure_rebuild_confirm()
Menu callback: confirm rebuilding of permissions.
1 string reference to 'node_configure_rebuild_confirm'
- node_menu in modules/
node/ node.module - Implementation of hook_menu().
File
- modules/
node/ node.module, line 1079 - 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() {
return confirm_form(array(), t('Are you sure you want to rebuild node permissions on the site?'), 'admin/content/node-settings', t('This will wipe all current node permissions and rebuild them based on current settings. Rebuilding the permissions may take a while so please be patient. This action cannot be undone.'), t('Rebuild permissions'), t('Cancel'));
}