function profile_admin_overview_submit

Submit handler to update changed profile field weights and categories.

See also

profile_admin_overview()

File

drupal/modules/profile/profile.admin.inc, line 82
Administrative page callbacks for the profile module.

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();
}