function profile_field_delete in Drupal 4
Same name and namespace in other branches
- 5 modules/profile/profile.module \profile_field_delete()
- 6 modules/profile/profile.admin.inc \profile_field_delete()
- 7 modules/profile/profile.admin.inc \profile_field_delete()
Menu callback; deletes a field from all user profiles.
1 string reference to 'profile_field_delete'
- profile_menu in modules/
profile.module - Implementation of hook_menu().
File
- modules/
profile.module, line 340 - Support for configurable user profiles.
Code
function profile_field_delete($fid) {
$field = db_fetch_object(db_query("SELECT title FROM {profile_fields} WHERE fid = %d", $fid));
if (!$field) {
drupal_not_found();
return;
}
$form['fid'] = array(
'#type' => 'value',
'#value' => $fid,
);
$form['title'] = array(
'#type' => 'value',
'#value' => $field->title,
);
return confirm_form('profile_field_delete', $form, t('Are you sure you want to delete the field %field?', array(
'%field' => theme('placeholder', $field->title),
)), 'admin/settings/profile', t('This action cannot be undone. If users have entered values into this field in their profile, these entries will also be deleted. If you want to keep the user-entered data, instead of deleting the field you may wish to <a href="%edit-field">edit this field</a> and change it to a %hidden-field so that it may only be accessed by administrators.', array(
'%edit-field' => url('admin/settings/profile/edit/' . $fid),
'%hidden-field' => theme('placeholder', t('hidden profile field')),
)), t('Delete'), t('Cancel'));
}