You are here

function notifications_scheduler_default_action_submit in Notifications 7

Action: Configuration form submit

1 call to notifications_scheduler_default_action_submit()
notifications_scheduler_new_posts_action_submit in notifications_scheduler/notifications_scheduler.module
Action: Configuration form submit

File

notifications_scheduler/notifications_scheduler.module, line 147
Notifications scheduler module

Code

function notifications_scheduler_default_action_submit($form, &$form_state) {
  $params['event_type'] = $form_state['values']['event_type'];
  $params['template'] = $form_state['values']['template'];
  return $params;
}