You are here

function notifications_scheduler_latest_posts_action_submit in Notifications 7

Action: Configuration form submit

File

notifications_scheduler/notifications_scheduler.module, line 191
Notifications scheduler module

Code

function notifications_scheduler_latest_posts_action_submit($form, &$form_state) {

  // Process the HTML form to store configuration. The keyed array that
  // we return will be serialized to the database.
  $params = notifications_scheduler_new_posts_action_submit($form, $form_state);
  $params['node_number'] = $form_state['values']['node_number'];
  return $params;
}