function profile_field_delete_submit

Same name and namespace in other branches
  1. 6.x drupal-6.x/modules/profile/profile.admin.inc \profile_field_delete_submit()

Process a field delete form submission.

Archivo

drupal-7.x/modules/profile/profile.admin.inc, line 414
Administrative page callbacks for the profile module.

Código

function profile_field_delete_submit($form, &$form_state) {
  db_delete('profile_field')->condition('fid', $form_state['values']['fid'])->execute();
  db_delete('profile_value')->condition('fid', $form_state['values']['fid'])->execute();

  cache_clear_all();

  drupal_set_message(t('The field %field has been deleted.', array('%field' => $form_state['values']['title'])));
  watchdog('profile', 'Profile field %field deleted.', array('%field' => $form_state['values']['title']), WATCHDOG_NOTICE, l(t('view'), 'admin/config/people/profile'));

  $form_state['redirect'] = 'admin/config/people/profile';
  return;
}