function profile_admin_overview_submit
Submit handler to update changed profile field weights and categories.
See also
File
- 
              modules/profile/ profile.admin.inc, line 82 
Code
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();
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
