You are here

function sms_user_send_sms_action_submit in SMS Framework 7

Same name and namespace in other branches
  1. 6.2 modules/sms_user/sms_user.actions.inc \sms_user_send_sms_action_submit()

Form submit handler for the 'Send SMS to Users' action.

File

modules/sms_user/sms_user.actions.inc, line 80
SMS User Action Implementation.

Code

function sms_user_send_sms_action_submit($form, $form_state) {
  $context['sms_text'] = $form_state['values']['sms_text'];
  return $context;
}