function action_goto_action_submit

Processes action_goto_action form submissions.

File

drupal/core/modules/action/action.module, line 688
This is the Actions module for executing stored actions.

Code

function action_goto_action_submit($form, $form_state) {
  return array(
    'url' => $form_state['values']['url'],
  );
}