You are here

function biblio_types_reset in Bibliography Module 5

1 string reference to 'biblio_types_reset'
biblio_menu in ./biblio.module
Implementation of hook_menu().

File

./biblio.module, line 979

Code

function biblio_types_reset() {
  $form['reset'] = array(
    '#type' => 'value',
    '#value' => 'reset',
  );
  $output = confirm_form($form, t('Are you sure you want to reset ALL the field definitions to the defaults? '), $_GET['destination'] ? $_GET['destination'] : 'admin/settings/biblio/types', t('This action will reset any and all field customizations to the defaults, and cannot be undone!'), t('Reset'), t('Cancel'));
  return $output;
}