function action_message_action_submit

Processes action_message_action form submissions.

File

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

Code

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