You are here

function admin_path_reset_confirm in Administrative pages 7

Form builder for the admin path reset form.

1 string reference to 'admin_path_reset_confirm'
admin_path_menu in ./admin_path.module
Implements hook_menu().

File

./admin_path.admin.inc, line 89
Administrative page callbacks for the Administrative pages module.

Code

function admin_path_reset_confirm($form, &$form_state) {
  return confirm_form($form, t('Are you sure you want to reset the administrative pages configuration to the global defaults?'), 'admin/config/user-interface/admin-path', t('Resetting will remove all changes to the administrative pages configuration. This action cannot be undone.'), t('Reset'), t('Cancel'));
}