You are here

function author_pane_author_pane_content_type_edit_form_submit in Author Pane 6.2

Same name and namespace in other branches
  1. 6 plugins/content_types/author_pane.inc \author_pane_author_pane_content_type_edit_form_submit()

File

plugins/content_types/author_pane.inc, line 80
This file provides a CTools content type containing the author pane.

Code

function author_pane_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];
  }
}