function node_configure_rebuild_confirm

Page callback: Form constructor for the permission rebuild confirmation form.

Return value

array An array as expected by drupal_render().

See also

node_configure_rebuild_confirm_submit()

node_menu()

Related topics

1 string reference to 'node_configure_rebuild_confirm'
node_menu in drupal/core/modules/node/node.module
Implements hook_menu().

File

drupal/core/modules/node/node.admin.inc, line 21
Content administration and module settings user interface.

Code

function node_configure_rebuild_confirm() {
  return confirm_form(array(), t('Are you sure you want to rebuild the permissions on site content?'), 'admin/reports/status', t('This action rebuilds all permissions on site content, and may be a lengthy process. This action cannot be undone.'), t('Rebuild permissions'), t('Cancel'));
}