function user_admin_account_submit in Drupal 6
Same name and namespace in other branches
- 5 modules/user/user.module \user_admin_account_submit()
- 7 modules/user/user.admin.inc \user_admin_account_submit()
Submit the user administration update form.
File
- modules/
user/ user.admin.inc, line 222 - Admin page callback file for the user module.
Code
function user_admin_account_submit($form, &$form_state) {
$operations = module_invoke_all('user_operations', $form_state);
$operation = $operations[$form_state['values']['operation']];
// Filter out unchecked accounts.
$accounts = array_filter($form_state['values']['accounts']);
if ($function = $operation['callback']) {
// Add in callback arguments if present.
if (isset($operation['callback arguments'])) {
$args = array_merge(array(
$accounts,
), $operation['callback arguments']);
}
else {
$args = array(
$accounts,
);
}
call_user_func_array($function, $args);
drupal_set_message(t('The update has been performed.'));
}
}