function system_actions_configure_submit
Same name and namespace in other branches
- 6.x drupal-6.x/modules/system/system.module \system_actions_configure_submit()
Process system_actions_configure() form submissions.
Archivo
- drupal-7.x/
modules/ system/ system.admin.inc, line 3147 - Admin page callbacks for the system module.
Código
function system_actions_configure_submit($form, &$form_state) {
$function = actions_function_lookup($form_state['values']['actions_action']);
$submit_function = $function . '_submit';
// Action will return keyed array of values to store.
$params = $submit_function($form, $form_state);
$aid = isset($form_state['values']['actions_aid']) ? $form_state['values']['actions_aid'] : NULL;
actions_save($function, $form_state['values']['actions_type'], $params, $form_state['values']['actions_label'], $aid);
drupal_set_message(t('The action has been successfully saved.'));
$form_state['redirect'] = 'admin/config/system/actions/manage';
}