You are here

function simple_access_profile_list_submit in Simple Access 6.2

Same name and namespace in other branches
  1. 5.2 simple_access.module \simple_access_profile_list_submit()
  2. 7.2 simple_access.admin.inc \simple_access_profile_list_submit()

File

./simple_access.admin.inc, line 156
House all the admin functions in inc to make the foot print a lot smaller.

Code

function simple_access_profile_list_submit($form, $form_state) {
  foreach ($form_state['values']['profiles'] as $pid => $profile) {
    $profile['pid'] = $pid;
    drupal_write_record('simple_access_profiles', $profile, array(
      'pid',
    ));
  }
}