function system_actions_manage_form_submit in Drupal 7
Same name and namespace in other branches
- 6 modules/system/system.module \system_actions_manage_form_submit()
Process system_actions_manage form submissions.
See also
File
- modules/
system/ system.admin.inc, line 3075 - Admin page callbacks for the system module.
Code
function system_actions_manage_form_submit($form, &$form_state) {
if ($form_state['values']['action']) {
$form_state['redirect'] = 'admin/config/system/actions/configure/' . $form_state['values']['action'];
}
}