Same name and namespace in other branches
  1. 6.x modules/system/system.module \system_actions_manage_form_submit()

Process system_actions_manage form submissions.

See also

system_actions_manage_form()

File

modules/system/system.admin.inc, line 3089
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'];
  }
}