You are here

function ctools_comment_created_content_type_edit_form_submit in Chaos Tool Suite (ctools) 7

Submit handler for the custom type settings form.

File

plugins/content_types/comment/comment_created.inc, line 64

Code

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