You are here

function social_content_form_submit in Social Content 7.2

Submit handler for the social_content_form.

File

./social_content.admin.inc, line 117
Social Content administration area. Provides menu callbacks for the Social Content administration area.

Code

function social_content_form_submit($form, $form_state) {
  $values = $form_state['values'];
  if ($values['op'] == t('Save')) {
    $class = $form['#storage']['class'];
    $class
      ->saveForm($form_state['values']);
    drupal_set_message(t('Your changes have been saved.'));
  }
}