function realname_rebuild_confirm in Real Name 6
Menu callback: confirm rebuilding of realnames.
1 string reference to 'realname_rebuild_confirm'
- realname_menu in ./
realname.module - Implements hook_menu().
File
- ./
realname.admin.inc, line 456 - The RealName module allows the admin to choose fields from the user profile that will be used to add a "realname" element (method) to a user object. Hook_user is used to automatically add this to any user object that is loaded.
Code
function realname_rebuild_confirm() {
return confirm_form(array(), t('Are you sure you want to rebuild the RealNames for all site users?'), 'admin/user/realname', t('This action rebuilds RealNames for all users, and may be a lengthy process.
This action cannot be undone.'), t('Rebuild realnames'), t('Cancel'));
}