| 6 system.module | system_actions_manage_form_submit($form, &$form_state) |
| 7 system.admin.inc | system_actions_manage_form_submit($form, &$form_state) |
| 8 system.admin.inc | system_actions_manage_form_submit($form, &$form_state) |
Process system_actions_manage form submissions.
File
- modules/
system/ system.module, line 1483 - Configuration system that lets administrators modify the workings of the site.
Code
function system_actions_manage_form_submit($form, &$form_state) {
if ($form_state['values']['action']) {
$form_state['redirect'] = 'admin/settings/actions/configure/' . $form_state['values']['action'];
}
}
Login or register to post comments