function simple_access_profile_list_submit in Simple Access 7.2
Same name and namespace in other branches
- 5.2 simple_access.module \simple_access_profile_list_submit()
- 6.2 simple_access.admin.inc \simple_access_profile_list_submit()
Profile list submit callback.
File
- ./
simple_access.admin.inc, line 189 - 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',
));
}
}