You are here

function author_pane_content_type_edit_form_submit in Author Pane 7.2

@todo Please document this function.

See also

http://drupal.org/node/1354

File

plugins/content_types/author_pane.inc, line 104

Code

function author_pane_content_type_edit_form_submit($form, &$form_state) {

  // Copy everything from our defaults.
  foreach (array_keys($form_state['plugin']['defaults']) as $key) {
    $form_state['conf'][$key] = $form_state['values'][$key];
  }
}