You are here

function campaignmonitor_general_form_submit in Campaign Monitor 6.2

Same name and namespace in other branches
  1. 5.2 campaignmonitor.module \campaignmonitor_general_form_submit()
  2. 5 campaignmonitor.module \campaignmonitor_general_form_submit()
  3. 6 campaignmonitor.module \campaignmonitor_general_form_submit()

File

./campaignmonitor.module, line 279

Code

function campaignmonitor_general_form_submit($form, &$form_state) {

  // Replace api_key and list_id with your own details
  $api_key = variable_get('campaignmonitor_api_key', '');
  $list_id = variable_get('campaignmonitor_list_id', '');
  $name = $form_state['values']['name'];
  $email = $form_state['values']['email'];

  // any cases other then these are when things are unchanged
  if (!$form_state['values']['unsubscribe_newsletter']) {

    // this is the case where they now want to be subscribed, and weren't before
    _campaignmonitor_add_subscriber($api_key, $list_id, $name, $email);
  }
  elseif ($form_state['values']['unsubscribe_newsletter']) {

    // this is the case where they don't want to be subscribed, and were before
    _campaignmonitor_remove_subscriber($api_key, $list_id, $email);
  }
}