function profile_admin_overview_submit
Same name and namespace in other branches
- 6.x drupal-6.x/modules/profile/profile.admin.inc \profile_admin_overview_submit()
Submit handler to update changed profile field weights and categories.
See also
Archivo
- drupal-7.x/
modules/ profile/ profile.admin.inc, line 82 - Administrative page callbacks for the profile module.
Código
function profile_admin_overview_submit($form, &$form_state) {
foreach (element_children($form_state['values']) as $fid) {
if (is_numeric($fid)) {
$weight = $form_state['values'][$fid]['weight'];
$category = $form_state['values'][$fid]['category'];
if ($weight != $form[$fid]['weight']['#default_value'] || $category != $form[$fid]['category']['#default_value']) {
db_update('profile_field')->fields(array(
'weight' => $weight,
'category' => $category,
))->condition('fid', $fid)->execute();
}
}
}
drupal_set_message(t('Profile fields have been updated.'));
cache_clear_all();
menu_rebuild();
}